Flash Content - Am I Missing Something?

Soldato
Joined
8 Oct 2005
Posts
4,184
Location
Midlands, UK
Hi,

Can someone please have a look at my code to embed a flash movie into a my webpage. A coupe of people are having issues viewing it - who apparently have flash player v10 installed:

Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>             
<script type="text/javascript">
var fvars = {
  'file':'/jwir/rotator.xml','autostart':'true','shownavigation':'false','linkfromdisplay':'true',
  'usefullscreen ':'false','shuffle':'true','rotatetime':'3','title':'fjdhf',
  'repeat':'true','height':'248', 'width':'886'};
var params = {'allowfullscreen':'true','allowscriptaccess': 'always','wmode':'transparent'};
var attributes={'id':'banner','name':'banner'};
swfobject.embedSWF('/jwir/flash.swf', 'banner', '886', '248', '9', 'false', fvars, params, attributes);
</script>
                





<div id="banner">
 Your browser currently doesn't have Flash Support - 
 <a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this rotator
</div>


Thanks
 
Apparently the person who is getting this error is using Firefox on a Mac - with the latest floash version installed. The flash works fine in IE, Opera, Chrome and Firefox on the PC.
 
Out of interest, are you using the SWFObject AIR Generator to produce that code?.

Try dropping your "Detect Flash Version" down to 6.0.0. It looks like you currently have that set at 9.0.0. :cool:
 
Out of interest, are you using the SWFObject AIR Generator to produce that code?.

Try dropping your "Detect Flash Version" down to 6.0.0. It looks like you currently have that set at 9.0.0. :cool:

Just used code from an example on the swfobject website.

Changing the version didnt work :(
 
Back
Top Bottom