Entry Box

And to set the cursor in the first entry box,:


When you want to make it so that the cursor is in a specific entry box, you need to make it have the current focus. To do that, first open the properties of the entry box and get the HTML name and the entry name.


Then create an action that looks generally like this:


On: show


Acton: Modify variable


Target: temp


Value: Javascript: document.entry17624form.Entry_1.focus()


For example, if the HTMLname = entry37 and the Entry name was Entry_1, then the value property would look like this:


Javascript: document.entry37form.Entry_1.focus()


 

Discussions have been disabled for this post