motionman95 Posted May 26, 2010 Posted May 26, 2010 I want to do something like this: While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $menu_item_1, $menu_item_2, $menu_item_3 $clicked = GetClickedID() myFunc($clicked) EndSwitch WEnd It this possible? Basically what I want to do is run a certain function based on the item clicked.
PsaltyDS Posted May 26, 2010 Posted May 26, 2010 (edited) How about just this: While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $menu_item_1, $menu_item_2, $menu_item_3 myFunc($nMsg) EndSwitch WEnd Let myFunc() figure out what to do based on $nMsg, which must be one the ID of the menu items, or the Case wouldn't have matched. P.S. Another option is to use GuiOnEventMode but, as Alton Brown would say: "That's another episode." Edited May 26, 2010 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now