v. new to html and xml - that's me!
I've read it's possible to set the fullscreen mode to the original aspect ratio by setting the overstretch flashvar to 'none'.
This I found in a post titled 'Limit fullscreen size'. I've looked at JW's list of flashvars, but I'm still unable to work out how to add what's needed into my code, which is as follows:
My XML playlist is:
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>lukeclark</title>
<link>http://web.me.com/lukeclark/Flash/Manwithmoviecamera</link>
<item>
<title>Manwithmoviecamera</title>
<media:content url="http://web.me.com/lukeclark/Flash/Manwithmoviecamera.flv" type="video/x-flv" duration="2.53" />
<media:thumbnail url="http://web.me.com/lukeclark/Flash/Manwithmoviecamera.jpg"/>
<media:credit>LukeAaronClark</media:credit>
<description>whatabeautifulday</description>
<link>http://web.me.com/lukeclark</link>
</item>
</channel>
</rss>
And for the player is:
<script type="text/javascript"
src="http://web.me.com/lukeclark/Flash/swfobject.js"></script>
<div id="player">This text will be replaced</div>
<script type="text/javascript">
var so = new SWFObject('http://web.me.com/lukeclark/Flash/player.swf','mpl','470','470','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&file=http://web.me.com/lukeclark/Flash/hello.xml&backcolor=ffffff&frontcolor=000000&lightcolor=0099cc&pla...');
so.write('player');
</script>
********
What do I need to write??! And where!
Any help would be fantastic!
Luke (I hope this is the right forum!)
