Start cursor in a specific field when pdf is opened
I have a PDF form set up that when someone opens it, the cursor is set in a specific field. My form has to be signed four times so it's passed around. I'm trying to set it up where each time a part of the form is completed and passed on to the next person, they open the form and the cursor is set up in their part. Here's what I have right now set up in Page Properties Action tab but it's not working:
if this.getField("Sig One").value = "";{
getField("Date").setFocus();
} else if (this.getField("Sig One").value != "" && this.getField("Sig Two") = "";{
getField("Sup Name").setFocus();
and so on. What am I doing wrong?
