I've got this as an action UI script, but don't understand why it won't work:
title=getText(20,20)
if(title=="OK")
click("OK");
WHat have I done wrong?
If script not working
Moderator: Martin
Re: If script not working
Hi,
The script looks almost OK to me, except the missing semicolon after the getText function call:
title=getText(20,20);
if(title=="OK")
click("OK");
Try to append a condition Debug Dialog to the flow and execute the flow to see if the variable title actually contains the expected text.
Regards,
Martin
The script looks almost OK to me, except the missing semicolon after the getText function call:
title=getText(20,20);
if(title=="OK")
click("OK");
Try to append a condition Debug Dialog to the flow and execute the flow to see if the variable title actually contains the expected text.
Regards,
Martin