Viewing 1 replies (of 1 total)
  • Plugin Author pupunzi

    (@pupunzi)

    Hi,
    I tested it on IE7+ and on iOs mobiles successfully… if it shows the V, M and P instead of the controls icons that means the browser you are using doesn’t support font face properties. A way to fix it is to set images instead of characters for the controls:

    jQuery.mbMiniPlayer.icon.play="<img src='"+jQuery.mbMiniPlayer.defaults.swfPath+"img/play.png'/>";
    
    jQuery.mbMiniPlayer.icon.pause="<img src='"+jQuery.mbMiniPlayer.defaults.swfPath+"img/pause.png'/>";
    
    jQuery.mbMiniPlayer.icon.stop="<img src='"+jQuery.mbMiniPlayer.defaults.swfPath+"img/stop.png'/>";
    
    jQuery.mbMiniPlayer.icon.rewind="<img src='"+jQuery.mbMiniPlayer.defaults.swfPath+"img/rewind.png'/>";
    
    jQuery.mbMiniPlayer.icon.volume="<img src='"+jQuery.mbMiniPlayer.defaults.swfPath+"img/volume.png'/>";
    
    jQuery.mbMiniPlayer.icon.volumeMute="<img src='"+jQuery.mbMiniPlayer.defaults.swfPath+"img/volume.png'/>";

    Than you should place the corresponding images inside a folder named “img” inside the plugin js folder.

    Anyway all modern browsers, included the Mobiles one, are font face proprty capable.

    Bye,
    Matteo

Viewing 1 replies (of 1 total)
  • The topic ‘Doesent play on Internet explorer or mobile phone.’ is closed to new replies.