vote up 0 vote down star

Argghh. I have a site that offers audio previews of songs hosted elsewhere. Some file names have an ampersand in them - see below where it passes "soundFile." Anytime there's an ampersand, Flash can't get the file - I think it drops the filename after the ampersand. It doesn't matter if I pass it as an "&" or an HTML entity ("& a m p ;") Any help out there? Thanks in advance!

<object type="application/x-shockwave-flash" data="includes/player.swf" id="audioplayer" height="24" width="290">
<param name="movie" value="includes/player.swf"><param name="FlashVars" value="playerID=1&amp;soundFile=http://www.divideandkreate.com/mp3/Divide_&_Kreate_-_Party_Kisser.mp3">
<param name="quality" value="high"><param name="menu" value="false"><param name="wmode" value="transparent">
</object>
flag

3 Answers

vote up 5 vote down check

Sounds like you might have to URL-encode it, rather than HTML-encode it. Not sure without the code sample though. The URL-encoded code for ampersand is '%26'.

link|flag
vote up 0 vote down

Please note: My code samples aren't coming through.

link|flag
no samples, no help :( BTW, you can edit your posts, so try again please – Stu Thompson Sep 17 '08 at 7:37
Cheers Stu - figuring things out here! – Rod Edwards Sep 17 '08 at 7:48
vote up 0 vote down

With that one simple answer, you made my night. Thank-you from a non-professional that often misses the obvious!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.