Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2006-01-16 07:33:11
- reptilerobots
- Member
- Registered: 2005-08-20
- Posts: 72
FLASH fullscreen not working correctly in TXP on FireFox!!!
Hello, my default page is a simple form that displays a flash file that is set to 100% x 100%, when I look at the page locally with the actual coded HTML in the document, it appears fine – when I view it through textpattern online, with the form presenting the flash file – the movie stretched to 100% width, but only shows about 1/3 of the move’s height, cutting off bottom 2/3rds.
the code also stays intact through the TXP system, so it is pretty puzzling to me why it is doing this:
here’s my code locally <code><html xmlns=“http://www.w3.org/1999/xhtml” xml:lang=“en” lang=“en”>
<head>
<style>BODY{border:0px; margin:0px;}</style>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<title>JSTN</title>
</head>
<body bgcolor=”#FFFFFF”>
<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=“100%” height=“100%” menu=“false” align=“middle”>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“movie” value=“flash/index.swf” />
<param name=“quality” value=“high” />
<param name=“menu” value=“false” />
<embed src=“flash/index.swf” quality=“high” menu=“false” width=“100%” height=“100%” align=“middle” allowScriptAccess=“sameDomain” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” />
</object>
</body>
</html></code>
here it is at www.wearetherobots.com/portfolio/ <code><!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml” xml:lang=“en” lang=“en”>
<head>
<meta http-equiv=“content-type” content=“text/html; charset=utf-8” />
<link rel=“stylesheet” href=“http://www.wearetherobots.com/portfolio/textpattern/css.php?s=default” type=“text/css” media=“screen” />
<title>JSTN</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=“100%” height=“100%” menu=“false” align=“middle”>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“movie” value=“http://www.wearetherobots.com/portfolio/file_download/index.swf” />
<param name=“quality” value=“high” />
<param name=“menu” value=“false” />
<embed src=“http://www.wearetherobots.com/portfolio/file_download/index.swf” quality=“high” menu=“false” width=“100%” height=“100%” align=“middle” allowScriptAccess=“sameDomain” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” />
</object>
</body>
</html>
<!— Runtime: 0.1177 —>
<!— Queries: 9 —>
<!— Memory: no info available —>
<!— txp tag trace:
secondpass
They seem to appear the same to me – so I have no idea why it would cut off my movie – I am using the same browser too… the crappy part is that it works in Internet Explorer for the mac!!!!
What might TXP be doing to my movie or code to make it display like that??
Offline
Re: FLASH fullscreen not working correctly in TXP on FireFox!!!
Have you tried validate your xhtml and css ? Try a strict DTD, and correct the errors. That would be a good first step to debug this imo.
Offline
#3 2006-01-16 20:05:27
- reptilerobots
- Member
- Registered: 2005-08-20
- Posts: 72
Re: FLASH fullscreen not working correctly in TXP on FireFox!!!
good suggestion – the embed code used by dreamweaver obviously wont pass the validation. But what I don’t get is, why it will work locally, but not on my TXP site.
Offline
#4 2006-01-16 20:48:41
- zem
- Developer Emeritus
- From: Melbourne, Australia
- Registered: 2004-04-08
- Posts: 2,579
Re: FLASH fullscreen not working correctly in TXP on FireFox!!!
Your two examples are different: different doctypes, different stylesheets. Try comparing apples with apples.
Alex
Offline
#5 2006-01-16 20:55:37
- reptilerobots
- Member
- Registered: 2005-08-20
- Posts: 72
Re: FLASH fullscreen not working correctly in TXP on FireFox!!!
ah yes…
I seemed to have fix my problem
<code>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml” xml:lang=“en” lang=“en”>
<head>
<meta http-equiv=“content-type” content=“text/html; charset=utf-8” />
<link rel=“stylesheet” href=“http://www.wearetherobots.com/portfolio/textpattern/css.php?s=default” type=“text/css” media=“screen” />
<title>JSTN</title>
</head>
<body>
<object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0” height=“100%” width=“100%”>
<param name=“movie” value=“http://www.wearetherobots.com/portfolio/file_download/index.swf”>
<param name=“quality” value=“low”>
<param name=“wmode” value=“transparent”>
<param name=“menu” value=“false”>
<embed src=“http://www.wearetherobots.com/portfolio/file_download/index.swf” quality=“high” pluginspage=“http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash” type=“application/x-shockwave-flash” wmode=“transparent” menu=“false” height=“100%” width=“100%”>
</object>
</body>
</html>
<!— Runtime: 0.0434 —>
<!— Queries: 9 —>
<!— Memory: no info available —>
<!— txp tag trace:
secondpass
Offline