Show
Ignore:
Timestamp:
07/17/08 03:17:55 (16 months ago)
Author:
jeroen
Message:

tagged the 1.1 wmvplayer and started the air player

Files:
1 modified

Legend:

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

    r37 r42  
    341341                if (vol < 1) { 
    342342                        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; } 
    344345                        if(config['mute'] == true) {  
    345346                                muteHandler(new ViewEvent(ViewEvent.MUTE,{state:false}));