[ Team LiB ] |
Recipe 11.2 Positioning Form Elements11.2.1 ProblemYou want to programmatically position form elements. 11.2.2 SolutionSet the _x and _y properties of each element. 11.2.3 DiscussionComponents are derived from movie clips, so they support the basic movie clip properties and methods, including the _x and _y properties. You can set the _x and _y properties of any component to position it on stage, just as you would with a movie clip: myComponentInstance._x = 90; myComponentInstance._y = 180; 11.2.4 See AlsoFor more complex positioning, see Recipe 11.8 and Recipe 11.22 |
[ Team LiB ] |