I can get the value on the full event by using the following script:
TextField2.rawValue = xfa.event.newText; // the text entered shows up in the TextField2 when full event fires
To change the value of the field you could have another event fire when the full event fires, like:
this.execEvent("exit"); //and place a this.rawValue = "somevalue"; on the "exit" event
Of course, this will fire on every exit, so depending on your objective this might not work for you. (form:ready might be a possible alternative)
Good luck!
Stephen
Message was edited by: kingphysh