Assigning values from a JavaScript variable to LotusScript variables
If you create a hidden field on your form, you can easily assign the value of a JavaScript value into it with code like this:
document.forms[0] .x.value = myJsVarNow that the JavaScript variable is in a form field, you can get it into a LotusScript variable by the uidoc.FieldGetText method, like this:
LSVar = uidoc.FieldGetText("x")where x is the name of the hidden field, and LSVar is the name of a LotusScript variable (dim LSVar as String).