J_Y_C 0 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. Share this post Link to post Share on other sites
J_Y_C 0 Posted August 19, 2006 AH HA! Excellent, many thanks. That would be some useful information for the help file... Share this post Link to post Share on other sites
Jos 2,177 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. Share this post Link to post Share on other sites
Xenobiologist 47 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 Share this post Link to post Share on other sites