Search code examples
flashaudioblogsweb-platforms

Dew Audio player not working in blogger


I have an mp3 file in google sites and I want to play that file using Dew player. I have used the below code

<object align="right" type="application/x-shockwave-flash" data="/dewplayer-mini.swf" width="160" height="20" border="0" id="dewplayer" name="dewplayer"> 
<param name="wmode" value="transparent" />
<param name="Movie" value="/dewplayer-mini.swf"/> 
<param name="flashvars" value="mp3=test.mp3"/> 
</object>

but it doesn't work. Why is that and how do I fix this?


Solution

  • You have to specify the link to your mp3 at the value="mp3=...".
    Where you replace ... with your direct URL/path link.

    What do you have to put in browser address bar to hear the mp3 file only? That is your direct URL (or path) to file. If not sure then, show us a link to your page and say what the file name is called.

    For example :

    <object align="right" type="application/x-shockwave-flash" data="/dewplayer-mini.swf" width="160" height="20" border="0" id="dewplayer" name="dewplayer"> 
    <param name="wmode" value="transparent" />
    <param name="Movie" value="/dewplayer-mini.swf"/> 
    <param name="flashvars" value="mp3=http://www.mywebsite.com/myfile.mp3"/> 
    </object>