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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Internet Explorer Display Problem...

Status
Not open for further replies.

knoxdigit

Technical User
Jan 30, 2007
1
AU
Hi there,

Just wondering if someone can help with my homepage swf( all of a sudden the writing next to graphic stopped being displayed in Internet Explorer. It still works fine in Mozilla Firefox?? This also occurs on the rest of my pages with the navbar swf (see difference in IE and MF) example
Thanks

Jon Viney
Achieve Tuition
 
Create a .js
in that place

theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects.outerHTML = theObjects.outerHTML;
}


Then in the html code for the flash file after </object>
place

<script type="text/javascript" src="YOURFILE.js">


Shold look somethink like this


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="550" height="550" title="Achieve Tuition: Professional one to one Tutoring All Ages All Subjects Australia Wide">

<param name="movie" value="swf_files/achieve_tuition_2.swf">
<param name="quality" value="high">
<embed src="swf_files/achieve_tuition_2.swf" quality="high" pluginspage=" type="application/x-shockwave-flash" width="550" height="550"></embed>
</object><script type="text/javascript" src="YOURFILE.js"></script>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top