Advertisement
terorama

gallery9 / Loaderzz.as

Aug 28th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package  {
  2.    
  3.     import flash.display.Loader;
  4.     import flash.display.MovieClip;
  5.    
  6.    
  7.     public class Loaderzz extends MovieClip {
  8.        
  9.         public var num_load:Number;
  10.         public var inloader:Loader;
  11.        
  12.         public function Loaderzz(innum:Number) {
  13.             num_load=innum;
  14.             inloader= new Loader();
  15.             addChild(inloader);
  16.            
  17.         }
  18.  
  19.     }
  20.    
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement