Reputation: 1356
I'm creating an application using AHK, I'd like to change the default Window Border to a Style like:
https://i.sstatic.net/ArWHt.png
Background Colour: #2B2D39 Text Colour: #474d65
Does anyone have any idea on how to do this?
Gui, Border, Style, 2B2D39, 474d65
Upvotes: 1
Views: 2448
Reputation: 2312
You are on the right track, but probably you need to convert your color (e.g., colour) codes to AHK Hex format. You can also get around the WinForm stuff with WinSet
or GDI. I actually often start with a HTA as my front end and can then control it with javascript or jquery or whatever.
Lots of good examples and samples here: https://www.autohotkey.com/boards/viewtopic.php?f=6&t=3851
Upvotes: 2