August 4, 200124 yr Hello, Is there a script step equivalent to the "Case" function, something more than "Else"? Or a way to use a script step to approximate the "Case" (or the "Choose" function? TIA.
August 5, 200124 yr Don't we all wish! No, sorry, the only branching in a script is If...Else. Case statements can be used within the If() test. You can, of course, use If statements without the else to test a number of conditions: If(test1) do this End If If(test2) do something else End If If(test3) do a third thing End If or do this -bd
Create an account or sign in to comment