Show
Ignore:
Timestamp:
09/29/09 13:46:01 (7 weeks ago)
Author:
jeroen
Message:

switched to mxmlc for ompiling the player

Files:
1 modified

Legend:

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

    r374 r388  
    88import com.jeroenwijering.utils.*; 
    99 
    10 import flash.display.MovieClip; 
     10import flash.display.*; 
    1111import flash.events.*; 
    1212import flash.external.ExternalInterface; 
     
    143143        public function getJSPluginConfig(nam:String):Object { 
    144144                try { 
    145                         var plg = getPlugin(nam); 
     145                        var plg:Object = getPlugin(nam); 
    146146                        var cfg:Object = getPluginConfig(plg); 
    147147                } catch (err:Error) { 
     
    174174 
    175175        /** Send a ready ping to javascript. **/ 
    176         public function playerReady() { 
     176        public function playerReady():void { 
    177177                if(ExternalInterface.available && _skin.loaderInfo.url.indexOf('http') == 0 && ready != true) { 
    178178                        ready = true; 
     
    183183 
    184184        /** The timeout on this ping is needed for IE - it'll not get the playerReady call. **/ 
    185         private function playerReadyPing() { 
     185        private function playerReadyPing():void { 
    186186                try { 
    187187                        if(ExternalInterface.objectID && !_config['id']) {