home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2011 May / ME_2011_05.iso / Galileo-Video-Tutorial / system / player.swf / scripts / controller / InitViewCommand.as < prev    next >
Encoding:
Text File  |  2010-11-30  |  355 b   |  20 lines

  1. package controller
  2. {
  3.    import org.robotlegs.mvcs.Command;
  4.    import ui.view.Main;
  5.    
  6.    public class InitViewCommand extends Command
  7.    {
  8.       public function InitViewCommand()
  9.       {
  10.          super();
  11.       }
  12.       
  13.       override public function execute() : void
  14.       {
  15.          contextView.addChild(new Main());
  16.       }
  17.    }
  18. }
  19.  
  20.