hi,
in my application (asp.net) i am using a audio player called (premiumbeat.com) Royalty free music player ya it is working fine in my appliction. I am giving the audio file directly in that code (the code which is given by the royalty free music when we download the tool) but my audio file come dynamically that is the audio file comes from the query string (from the another page) then how can i place the audio file in that code this is the code....
<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <script type="text/javascript" src="swfobject.js"></script> <div id="flashPlayer"> </div> <script type="text/javascript"> var so = new SWFObject("playerSingle.swf", "mymovie", "192", "67", "7", "#FFFFFF"); so.addVariable("autoPlay", "no"); so.addVariable("soundPath","song.mp3"); so.addVariable("overColor","#000044") so.addVariable("playerSkin","1") so.write("flashPlayer"); </script> </div> </form> </body> </html>
|