Search the Community
Showing results for tags 'guictrlcreatemenu'.
-
Hello, I try to do some script, and I need to create something like GUICtrlCreateMenu. But this option creates menu on the top of GUI window, and I need something like this in the other place, something like a button with menu. I can't find any way, how to do this...?
-
Hi, working on my first autoit GUI an got some questions. Is it possible to get an action on the first menu level For example: $StartMenu = GUICtrlCreateMenu("Datei") ... while 1 Switch GUIGetMsg() Case $StartMenu MsgBox(0, "Test", "yes this works") (c...