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!

IE 6 & flashes

Status
Not open for further replies.

AIXFinder

IS-IT--Management
Jan 4, 2007
97
US
On IE 6.0, flashes are behaving as if they're links when you hover the mouse over it with the message, “Press SpaceBar or Enter to activate and us this control”.

Is there a way to remove the behavior?

thx
 
I have three flashes on a page.
In that case, what do I need to do?
 
Use the swfObject and 3 div...

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

<script type="text/javascript">
var so = new SWFObject("movie1.swf", "mymovie", "200", "100", "7", "#336699");
so.write("flashcontent1");
</script>

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

<script type="text/javascript">
var so = new SWFObject("movie2.swf", "mymovie", "200", "100", "7", "#336699");
so.write("flashcontent2");
</script>

Etc...

Regards. Web Hosting - Web Design
01/07/07 -> OLDNEWBIE VS JOSHUA MUSSLEWHITE
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top