I need help in finishing off a script.
I am writing a script where 3 conditions in a function are to be checked.
eg.
function Master(){
if(condition1){
addFunction()
}
if(condition2){
addFunction()
}
if(condition3){
addFunction()
}
}
Then I need to return to Master() from addFunction() and continue on to the
next if condition, without going to the first if condition again. All 3
functions must be checked everytime there is a call to Master().
I cannot have if..else in the Master().
Any ideas.
Thank you