Hi All,
I've searched the forum so I hope this hasn't been asnwered elsewhere. I'm trying to use a Flickr RSS feed as my playlist for the image rotator. The problem I face is that I'm trying to display the feed for a specific 'set' of images based on a keyword. Both of which are identified on the querystring e.g.
http://api.flickr.com/services/feeds/photos_public.gne?id=8061742@N07&format=atom&tags=Nottingham
How can I use this in my embed statment without the Flickr querystring variables being treated as flashvars. I'm using the following on myspace:
<object enableJSURL="false" enableHREF="false" saveEmbedTags="true" allowScriptAccess="never" allownetworking="internal" type="application/x-shockwave-flash" allowScriptAccess="never" allownetworking="internal" height="250" width="250" border="0" data="http://www.happymondaysonline.com/mediaplayer/imagerotator.swf">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="http://www.happymondaysonline.com/mediaplayer/imagerotator.swf" />
<param name="quality" value="high" />
<param name="flashvars" value="file=http://api.flickr.com/services/feeds/photos_public.gne?id=8061742@N07&format=atom&tags=Nottingham&lightcolor=0xFD1094&linkfromdisplay=false&transition=random&shownavigation=true&rotatetime=4&overstretch=true" />
<param name="wmode" value="transparent" />
</object>
and the following elsewhere:
<script type="text/javascript">
var FO = {movie:"imagerotator.swf",width:"400",height:"400",majorversion:"7",build:"0",bgcolor:"#000000", flashvars:"file=http://api.flickr.com/services/feeds/photos_public.gne?id=8061742@N07&format=atom&tags=Nottingham&li..." };
UFO.create(FO, "player");
</script>
...both to no avail. It displays images from the right account (the id=8061742@N07), but &format=atom&tags=Nottingham are being ignored. I've tried URLencoding the ampersands in the flickr querystring but that didn't work either.
Is there a way to do this? Any help greatly appreciated.

Sorry I forgot to use code tags there :$