Show
Ignore:
Timestamp:
06/06/08 10:11:42 (18 months ago)
Author:
jeroen
Message:

implemented stacker; display of media and some controlbaritems still broken

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/as3/com/jeroenwijering/player/View.as

    r3 r4  
    77import flash.display.MovieClip; 
    88import flash.events.EventDispatcher; 
    9 import flash.external.ExternalInterface; 
    109import flash.system.Capabilities; 
    1110import com.jeroenwijering.events.*; 
     
    4443                views = new Array(); 
    4544                views.push(new CaptionsView(this)); 
     45                views.push(new ControlbarView(this)); 
    4646                views.push(new DisplayView(this)); 
     47                views.push(new ExternalView(this)); 
    4748                views.push(new KeyboardView(this)); 
    4849                views.push(new RightclickView(this)); 
    49                 if(_skin['controlbar']) { 
    50                         //views.push(new ControlbarView(this)); 
    51                 } 
    52                 if(_skin['playlist']) { 
    53                         //views.push(new PlaylistView(this)); 
    54                 } 
    55                 if(ExternalInterface.available || Capabilities.playerType == 'External') { 
    56                         views.push(new ExternalView(this)); 
    57                 } 
     50                views.push(new PlaylistView(this)); 
    5851        }; 
    5952