actionscript 3 - How to design layout in Action Script 3.0? -
i want design registration form using actionscript, have designed labels , text boxes using label.x = "10" label.y="40" text.x = "50" text.y ="40"... align correctly. want design layout such labels , text boxes aligned properly. or examples or docs ?
if use flex can use hbox/vbox , set dimensions in percent. otherwise create helper class (like positionutils) out.
// position displayobjects in list margins 0, 5 , 10 positionutils.alignvertical([txtheader,txtbody, btnsend], [0,5,10]);
Comments
Post a Comment