Changeset 87
- Timestamp:
- 10/17/08 13:20:50 (5 years ago)
- Location:
- branches/4.2
- Files:
-
- 8 added
- 7 edited
-
com/adobe (added)
-
com/adobe/image (added)
-
com/adobe/image/BitString.as (added)
-
com/adobe/image/JPGEncoder.as (added)
-
com/adobe/image/PNGEncoder.as (added)
-
com/jeroenwijering/player/Model.as (modified) (2 diffs)
-
com/jeroenwijering/player/Player.as (modified) (1 diff)
-
com/jeroenwijering/player/View.as (modified) (1 diff)
-
com/jeroenwijering/plugins/Controlbar.as (modified) (2 diffs)
-
com/jeroenwijering/plugins/Playlist.as (modified) (1 diff)
-
com/jeroenwijering/plugins/Snapshot.as (added)
-
player.fla (modified) (previous)
-
player.swf (modified) (previous)
-
snapshot.fla (added)
-
snapshot.swf (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2/com/jeroenwijering/player/Model.as
r83 r87 75 75 models[currentModel].stop(); 76 76 } 77 if(!models[typ]) { 77 if(!models[typ]) { 78 78 loadModel(typ); 79 79 } … … 192 192 models[currentModel].stop(); 193 193 } 194 sendEvent(ModelEvent.LOADED,{loaded:0,total:0});195 194 sendEvent(ModelEvent.STATE,{newstate:ModelStates.IDLE}); 196 195 }; -
branches/4.2/com/jeroenwijering/player/Player.as
r86 r87 67 67 token:undefined, 68 68 tracecall:undefined, 69 version:'4.2.8 6'69 version:'4.2.87' 70 70 }; 71 71 /** Reference to all stage graphics. **/ -
branches/4.2/com/jeroenwijering/player/View.as
r83 r87 167 167 ExternalInterface.call("playerReady",dat); 168 168 } catch (err:Error) {} 169 }170 if(config['file']) {171 sendEvent(ViewEvent.LOAD,config);172 169 } 173 170 }; -
branches/4.2/com/jeroenwijering/plugins/Controlbar.as
r83 r87 134 134 stacker.rearrange(); 135 135 fixTime(); 136 loadedHandler(new ModelEvent(ModelEvent.LOADED,{loaded:0,total:0})) 136 137 }; 137 138 … … 166 167 /** Hide above controlbar again when move has timed out. **/ 167 168 private function moveTimeout():void { 168 if((bar.mouseY< 0 || bar.mouseY>bar.height) && bar.alpha == 1) {169 if((bar.mouseY<3 || bar.mouseY>bar.height-5) && bar.alpha == 1) { 169 170 Animations.fade(bar,0); 170 171 Mouse.hide(); -
branches/4.2/com/jeroenwijering/plugins/Playlist.as
r86 r87 298 298 clip.slider.rail.transform.colorTransform = front; 299 299 } catch (err:Error) {} 300 }301 if(view.config['lightcolor']) {302 light = new ColorTransform();303 light.color = uint('0x'+view.config['lightcolor'].substr(-6));304 } else {305 light = front;300 if(view.config['lightcolor']) { 301 light = new ColorTransform(); 302 light.color = uint('0x'+view.config['lightcolor'].substr(-6)); 303 } else { 304 light = front; 305 } 306 306 } 307 307 };
Note: See TracChangeset
for help on using the changeset viewer.
