Ignore:
Timestamp:
09/25/09 17:12:34 (4 years ago)
Author:
pablo
Message:

Player4 emulation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/fl5/src/com/longtailvideo/jwplayer/player/Player.as

    r311 r386  
    3636                public function Player() { 
    3737                        model = new Model(); 
    38                         view = new View(); 
     38                        view = new View(this); 
    3939                        controller = new Controller(this, model, view); 
    4040 
     
    4242                        view.addGlobalListener(forward); 
    4343                        controller.addGlobalListener(forward); 
     44 
     45                        // Initialize V4 "simulator" singleton 
     46                        new PlayerV4Emulation(this); 
    4447 
    4548                        controller.setupPlayer(); 
     
    165168                } 
    166169         
    167                 public function fullscreen(on:Boolean=true):Boolean { 
     170                public function fullscreen(on:Boolean):Boolean { 
    168171                        return controller.fullscreen(on); 
    169172                } 
Note: See TracChangeset for help on using the changeset viewer.