|
-
ok i adjusted the code so that I could identify each movieclips number. Every time the movieclip is added to stage it is triggered by an event listener... how would I call it? using an Event.ADDED_TO_STAGE, how would i call it? i try e.target but it doesnt work. So when I try e.target.x, i cant change it....
private function addedToStageF(e:Event):void
{
removeEventListener(Event.ADDED_TO_STAGE, addedToStageF);
trace(e.target.name);
e.target.width = 12211;
trace(e.target.width);//I get 0.....as for all of them...
{
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|