Welcome to the Indigo Rose Software discussion forums! You will need to sign up for a forum account and login before you can post. Need help? View the Forum FAQ.
I am working with a CBT project that the operator has to enter sample data and when the page exits I would like that data removed so the field is blank the next time the page is open. Also, can I validate the data entered?
In whatever action or actions that you jump to a different page set the text to nothing:
EditFieldObject[EditField1].SetText ("")
As for validating the data, I'm not sure there is an automated way to do it. You could use another object Mouse Over or something along those lines to fire a validation script.
Comment