On Dec 22, 1:47*pm, Bigfoot1956 <vrjohnson1... (AT) gmail (DOT) com> wrote:
Quote:
Naming the object was part of the problem.
Still goes to the first field.
The last line of the script is the goto object.
I added a pause script for 5 sec.
Cursor goes to the object and then when the script ends it returns to thefirst field.
There is no additional scriting.
I can even tab through additional fields during the 5 sec wait. *It then returns to the first field.
I had some required entry fields. *I removed the requirements. No Help.
Any more ideas? |
All a script trigger does is run a script, it doesn't interrupt
anything else. So, you tab to leave a field, that triggers the script.
After the script runs, the triggering action (in this case, the tab)
continues and you go to the next field in the tab order.
You can interrupt the triggering action from continuing. Place an Exit
Script[] script step at the end of your triggered script. For a
result, enter False.
Exit Script[False}
That should take care of it.
Grip