actionscript 3 - Margintop in actionscript3 -
Hello, is it possible to set up a form element for a form element in the action sequence?
var frm: Form = new form ();
Thank you
You almost did it. Instead of margin hat
you need to set up paddingop
.
var frm: form = new form (); Frm.setStyle ('paddingtop', 20);
Comments
Post a Comment