Hidden Fields Appear at Specific Coordinates
I have a fillable form that has several hidden fields. When a choice is made from one of the drop down lists, then one of the hidden fields will appear. As there are several drop downs that have the same options, what I am hoping to do is have the hidden field appear at a specific set of coordinates on the form. If the user chooses the same option from one of the other drop downs, then the same hidden field may appear at a different set of coordinates. Does that make sense?
I have been shooting in the dark. Making the field appear is not the problem. I am using the following to make the field appear. I don't know how to get it to appear at specific coordinates like x=510 and y=77 or oCoords: [510,77,580,59]; etc.:
this.getField("Test").display = display.visible;
Thoughts?