Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good day,
My question is this:
I can enter a value via an input box, running the script, and this value is a variable to use within the application.
thnks!!
You can create a variable and use an input box to give the variable a value. When you next reload the document you can use the variable in the script.
You can also create a variable in the script and give it a value interactively during the reload using the Input function:
LET vMyVariable = Input('Enter value', 'Input box');
This variable can then be used in the application.