ahk gui title bar code example
Example: ahk gui title bar
^f1:: ;press this to start
showGUI()
return
makeGUI() {
Gui, Add, Button, w100 h69, hello world ;nice
return
}
showGUI() {
makeGUI()
Gui, -Caption ;this is the part that removes the title bar
Gui, Show
return
}