jan_flanders

Untitled

Aug 11th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var total:Number=0;
  2. btn.onPress=function()
  3. {
  4.     trace(total);
  5.  
  6.     var Phist:MovieClip = _root.attachMovie("phist", "phist"+(total++), _root.getNextHighestDepth());
  7.     Phist._x = 100;
  8.     Phist._y = 100;
  9.    
  10.     //or
  11.     _root.attachMovie("phist", "phist"+(total++), _root.getNextHighestDepth());
  12.     _root["phist"+total]._x = 100;
  13.     _root["phist"+total]._y = 100;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment