Avatar

Level 7

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.

1661718_pastedImage_0.png

In this example the reference would be vars.myVariable

Examples

vars.myVariable = TextField1.rawValue;

TextField1.rawValue = vars.myVariable;

Could this help you?