Changeset 4 for trunk/as3/com/jeroenwijering/player/View.as
- Timestamp:
- 06/06/08 10:11:42 (18 months ago)
- Files:
-
- 1 modified
-
trunk/as3/com/jeroenwijering/player/View.as (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/as3/com/jeroenwijering/player/View.as
r3 r4 7 7 import flash.display.MovieClip; 8 8 import flash.events.EventDispatcher; 9 import flash.external.ExternalInterface;10 9 import flash.system.Capabilities; 11 10 import com.jeroenwijering.events.*; … … 44 43 views = new Array(); 45 44 views.push(new CaptionsView(this)); 45 views.push(new ControlbarView(this)); 46 46 views.push(new DisplayView(this)); 47 views.push(new ExternalView(this)); 47 48 views.push(new KeyboardView(this)); 48 49 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)); 58 51 }; 59 52
