Changeset 634 for trunk/fl5/src/com/longtailvideo/jwplayer/player/Player.as
- Timestamp:
- 11/16/09 20:24:04 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/fl5/src/com/longtailvideo/jwplayer/player/Player.as
r618 r634 13 13 import com.longtailvideo.jwplayer.view.interfaces.ISkin; 14 14 15 import flash.display.DisplayObject; 15 16 import flash.display.Sprite; 16 17 import flash.events.Event; … … 55 56 view = new View(this, model); 56 57 controller = new Controller(this, model, view); 57 controller.addEventListener(PlayerEvent.JWPLAYER_READY, playerReady );58 controller.addEventListener(PlayerEvent.JWPLAYER_READY, playerReady, false, -1); 58 59 controller.setupPlayer(); 59 60 } … … 296 297 return view.getPlugin(id); 297 298 } 299 300 /** The player should not accept any calls referencing its display stack **/ 301 public override function addChild(child:DisplayObject):DisplayObject { 302 return null; 303 } 304 305 /** The player should not accept any calls referencing its display stack **/ 306 public override function addChildAt(child:DisplayObject, index:int):DisplayObject { 307 return null; 308 } 309 310 /** The player should not accept any calls referencing its display stack **/ 311 public override function removeChild(child:DisplayObject):DisplayObject { 312 return null; 313 } 314 315 /** The player should not accept any calls referencing its display stack **/ 316 public override function removeChildAt(index:int):DisplayObject { 317 return null; 318 } 319 298 320 } 299 321 }
Note: See TracChangeset
for help on using the changeset viewer.
