- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
If you add a variable to your script object, you can recall and set it at any time by referencing it. You could set it when the dropdown is exited and recall it when the form is loaded in the docReady event.
In this example the reference would be vars.myVariable
Examples
vars.myVariable = TextField1.rawValue;
TextField1.rawValue = vars.myVariable;
Could this help you?