Forum Discussion
maximojo
12 years agoFrequent Contributor
Hi,
When looking at your original example the "Else" part needs to be moved out to the same level as the "If", otherwise it won't execute.
So in script the way you have it in your original keyword test example it would look like:
if(blah)
{
// do stuff
else // sytax error!
{
}
}
Cheers
m
When looking at your original example the "Else" part needs to be moved out to the same level as the "If", otherwise it won't execute.
So in script the way you have it in your original keyword test example it would look like:
if(blah)
{
// do stuff
else // sytax error!
{
}
}
Cheers
m