I have tried several of the items here but can not get my flash item to show up on my main page when loaded into my master file with a very simple layout. The address is http://new.buckhorncafe.com
Here is my master file code for displaying the flash:
<div id="container"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</div> <script type="text/javascript" src="/scripts/swfobject.js"></script> <script type="text/javascript"> var path = "]]>http://new.buckhorncafe.com/flash/header_buck.swf<![CDATA["; var videowidth = "]]>953<![CDATA["; var videoheight = "]]>307<![CDATA["; // Rest of JavaScript code var s1 = new SWFObject(path,"Pindar SWF",videowidth,videoheight,"9","#FFFFFF"); s1.addParam("allowfullscreen","true"); s1.addParam("allowscriptaccess","always"); s1.addParam("wmode","transparent"); s1.write("container"); </script>
The page comes up shows the statement "Get the flash player" which then clears and nothing shows.
It seems your "param name=movie" tag is using the right URL but the "<EMBED SRC=" tag is not - they should both match to work properly in both browsers
New twist on my flash promlem.... I have my flash menu up and running. Problem is that the navigation is not working. If posted outside of Umbraco it works just fine. However inside Umbraco my menu buttons don't do anything. Ideas?
Trouble with Flash in My master file
I have tried several of the items here but can not get my flash item to show up on my main page when loaded into my master file with a very simple layout. The address is http://new.buckhorncafe.com
Here is my master file code for displaying the flash:
<div id="container"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</div>
<script type="text/javascript" src="/scripts/swfobject.js"></script>
<script type="text/javascript">
var path = "]]>http://new.buckhorncafe.com/flash/header_buck.swf<![CDATA[";
var videowidth = "]]>953<![CDATA[";
var videoheight = "]]>307<![CDATA[";
// Rest of JavaScript code
var s1 = new SWFObject(path,"Pindar SWF",videowidth,videoheight,"9","#FFFFFF");
s1.addParam("allowfullscreen","true");
s1.addParam("allowscriptaccess","always");
s1.addParam("wmode","transparent");
s1.write("container");
</script>
The page comes up shows the statement "Get the flash player" which then clears and nothing shows.
I appreciate any help anyone can give.
Ron
Hi Ron,
Take a look at the quotation marks.
HTH.
Sincere regards,
Eduardo Macho
I have it coming up in IE 7 but i will not display in the latest Firefox.
Here is the code I am using.
<div class="flash">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="download.macromedia.com/.../swflash.cab#version=6,0,0,0" WIDTH="953" HEIGHT="307" id="header_buck" ALIGN="">
<PARAM NAME=movie VALUE="http://new.buckhorncafe.com/flash/header_buck.swf"> <PARAM NAME=quality VALUE=high> <param name="wmode" value="transparent" /> <EMBED src="header_buck.swf" quality=high WIDTH="953" HEIGHT="307" NAME="header_buck" ALIGN="center" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT> )
</div>
Any Ideas?
Thanks,
Ron
It seems your "param name=movie" tag is using the right URL but the "<EMBED SRC=" tag is not - they should both match to work properly in both browsers
New twist on my flash promlem.... I have my flash menu up and running. Problem is that the navigation is not working. If posted outside of Umbraco it works just fine. However inside Umbraco my menu buttons don't do anything. Ideas?
http://www.buckhorncafe.com
Thanks much
Ron
Sorry guys. I figured this one out. It was pulling its source from the wrong domain name.
Ron
is working on a reply...