Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. make_gui_movieclips();
  2.  
  3. function make_gui_movieclips():void{
  4.     movieclip_01 = make_gui_movieclip("CatWorld",movieclip_x,movieclip_y,movieclip_height,movieclip_width);
  5. }
  6.  
  7. function make_gui_movieclip(nom:String, px:Number, py:Number, w:Number, h:Number):CatWorld{
  8.     var movieclips:CatWorld;
  9.    
  10.     movieclips = new CatWorld();
  11.     movieclips.addEventListener(MouseEvent.CLICK,do_movieclip);
  12.     movieclips.name = nom;
  13.     place_obj(movieclips,px,py,w,h);
  14.     return movieclips;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement