Hi all, I have a simple problem that I cannot seem to solve. I want to display a Flash (.swf) file in a page template. I have this code in a page template ------------------------------------------------------------------------------------------ <html> <head> <title>Flash Test</title> </head> <body> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#versio..." width="550" height="400" id="Map" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="Map.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <embed src="Map.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="Map" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object> </body> ----------------------------------------------------------------------------------------- When I view the page the flash movie is not displayed, but i can right click on where the movie should be and get the flash menu. Help would be much appreciated :) -tim zegir
What standard are you coding in? A List Apart ran an article with some markup to embed flash that validates as XHTML http://www.alistapart.com/articles/flashsatay/ might be worth a try... -- David On Jan 4, 2004, at 9:27 PM, Tim Zegir wrote:
Hi all,
I have a simple problem that I cannot seem to solve.
I want to display a Flash (.swf) file in a page template.
I have this code in a page template ----------------------------------------------------------------------- ------------------- <html> <head> <title>Flash Test</title> </head> <body> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/ swflash.cab#version=7,0,0,0" width="550" height="400" id="Map" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="Map.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <embed src="Map.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="Map" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object> </body> ----------------------------------------------------------------------- ------------------
When I view the page the flash movie is not displayed, but i can right click on where the movie should be and get the flash menu.
Help would be much appreciated :)
-tim zegir
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
participants (2)
-
David Siedband -
Tim Zegir