Last active
August 29, 2015 14:18
-
-
Save tmplinshi/cd648cc37a8064c4680b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gui +HwndHGUI | |
SysMenuItems := " | |
(LTrim | |
----------------------------- | |
item 1, 1234, test_function | |
item 2, 2222, test_lable | |
)" | |
Menu_SetSysMenu( HGUI, SysMenuItems, "Reset" ) | |
Gui, Show, W400 h300 | |
Return | |
test_function() { | |
MsgBox, % A_ThisFunc | |
} | |
test_lable: | |
MsgBox, % A_ThisLabel | |
Return | |
GuiClose: | |
ExitAPP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment