|
Okay gang, let's tackle one issue at a time here.
The first issue is a common one in Acrobat, that being trying to keep data private and NOT having the next user (on the same computer) see the previous users data.
There is a Simple solution to this:
Add the below _javascript_ (js) to the page open "action".
if (this.getField("L_Opened").value == "Yes"){ this.resetForm(); this.getField("L_Opened").value = "Yes"; }
You will also need to add a hidden field with called "L_Opened" and set the default value to "No".
When the page is first opened, it will check to see the value of the L_Opened field, if its NOT "Yes" then the form will be reset, once its reset it also changes the value to "Yes" and then when you come back to that page it will not reset the entire form again.
~nicholas
~~~~~~~~~~~~~~~~~~~~~~~~~
Nicholas Jon
Chief Technical Officer
We Do That! Technologies
Long Beach, Ca
Phone 562.366.2608 PDT
~~~~~~~~~~~~~~~~~~~~~~~~~ |