J_Y_C Posted August 19, 2006 Posted August 19, 2006 Is there a way in AutoIt to allow my switch/select statements to fall through? for instance, in Java, you can say: switch (value){ case:1 case:6 case:8 do this stuff case:3 case:9 case:2 do some other stuff } I tried to do this, but ended up having do a switch statement with tons of repeated values.
J_Y_C Posted August 19, 2006 Author Posted August 19, 2006 AH HA! Excellent, many thanks. That would be some useful information for the help file...
Developers Jos Posted August 19, 2006 Developers Posted August 19, 2006 (edited) not sure I understand your question from your example but are you looking for : ContinueCase ? Edited August 19, 2006 by JdeB SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Xenobiologist Posted August 19, 2006 Posted August 19, 2006 HI, a(1) a("Hugo") a(5) a(10) Func a($nr) Switch $nr case 1,2,3 MsgBox(0,"1","1") Case 4,5,6 MsgBox(0,"2","2") Case Else MsgBox(0,"3","3") EndSwitch EndFunc So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
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