Answered
How to position a field dynamicaly
I want to change the coordinates of a text field in javascript. How can I do that?
An example of what I'm trying to achive:
if (this.getField("text1") == "something"){
//move field
}
I want to change the coordinates of a text field in javascript. How can I do that?
An example of what I'm trying to achive:
if (this.getField("text1") == "something"){
//move field
}
if (this.getField("text1").value == "something") {
this.getField("text1").rect = [0, 0, 100, 100];
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.