Changeset 42 for trunk/as3/com/jeroenwijering/player/Controller.as
- Timestamp:
- 07/17/08 03:17:55 (16 months ago)
- Files:
-
- 1 modified
-
trunk/as3/com/jeroenwijering/player/Controller.as (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/as3/com/jeroenwijering/player/Controller.as
r37 r42 341 341 if (vol < 1) { 342 342 muteHandler(new ViewEvent(ViewEvent.MUTE,{state:true})); 343 } else if (!isNaN(vol) && vol < 101) { 343 } else if (!isNaN(vol)) { 344 if(vol > 100) { vol = 100; } 344 345 if(config['mute'] == true) { 345 346 muteHandler(new ViewEvent(ViewEvent.MUTE,{state:false}));
