November 16, 200619 yr Newbies Hello again, I am trying to make it so that I can click on any of the field labels and have the find go to the field next to the label and not have to have a script for each field. Any suggestions. Thanks.
November 16, 200619 yr You can use one Find script that uses a script parameter to determine which field to go to: Enter Find Mode [ ] If [ get(scriptparameter) = "Name" ] Go to Field [ Name ] Else If [ get(scriptparameter) = "Date of Birth" ] Go to Field [ Date of Birth ] ... End If Pause Script [] Perform Find [] ... The buttons you define will then all call the same Find script, but each will send a different script parameter that corresponds to the field name.
Create an account or sign in to comment