jan_flanders

Untitled

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