Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frame Shown around flash page in IE 7.0

Status
Not open for further replies.

aph

Technical User
Jul 8, 2000
134
GB
Hi all just done a basic site for a client and to me in Firefox everything works fine, but in IE 7.0 as you mouse over the flash page it draws a frame around the flash section of the page and while it is there for buttons to operate you have to click on them twice to work, E.G take you to the next page any one any ideas about sorting this out.
sites here


apart from telling the client to use a decent browser that it :)
 
Hi oldnewbie, cheers for the link so my html has gone from

<html xmlns=" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>index</title>
</head>
<body bgcolor="#f0e9cd" MARGINHEIGHT="0" MARGINWIDTH="0" TOPMARGIN="0" LEFTMARGIN="0" RIGHTMARGIN="0"
BOTTOMMARGIN="0" SCROLL="YES">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<centre>
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="7">
<tr bgcolor="#f0e9cd">
<td align="center" valign="middle"></td>
<td align="center" valign="middle">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=" width="1000" height="750" id="index" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="index.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#f0e9cd" /><embed src="index.swf" quality="high" bgcolor="#f0e9cd" width="1000" height="750" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage=" />
</object>
</td>
</tr>
</table>
</body>
</html>

TO
<html xmlns=" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>index</title>
</head>
<body bgcolor="#f0e9cd" MARGINHEIGHT="0" MARGINWIDTH="0" TOPMARGIN="0" LEFTMARGIN="0" RIGHTMARGIN="0"
BOTTOMMARGIN="0" SCROLL="YES">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<centre>
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="7">
<tr bgcolor="#f0e9cd">
<td align="center" valign="middle"></td>
<td align="center" valign="middle">
<script type="text/javascript" src="swfobject.js"></script>

<div id="flashcontent">
This text is replaced by the Flash movie.
</div>

<script type="text/javascript">
var so = new SWFObject("index.swf", "index", "1000", "750", "8", "#f0e9cd");
so.write("flashcontent");
</script>
</td>
</tr>
</table>
</body>
</html>

But now all I get is
"This text is replaced by the Flash movie."

in the middle of my page any ideas?
 
yup to the wrong directory :-(

Cheers for all your help now working correctly
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top