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

IE loop 1

Status
Not open for further replies.

cmancre

Programmer
Jan 30, 2005
35
0
0
PT

hello, i got a problem that i dont know how to solve it.
I did an html page, with a drop down menu (li and lu), The page got 2 flash in the page. With the firefox it runs OK, but in the IE the page enters in a infinit loop and the flash never loads. I did run a firefox html validator and i got this warnigs:

line 51 column 14 - Warning: <embed> is not approved by W3C
line 62 column 15 - Warning: discarding unexpected </embed>

ideias!???
 
Some code would help a little. Link to your page would help a lot.
 
here is the flash code, the html validator don't give no more erros, except in the embed warning:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="id="top_header" width="190" height="90">
<param name="movie" value="imagens/top_header.swf">
<param name="quality" value="best">
<param name="wmode" value="transparent">
<param name="bgcolor" value="#FFFFFF">
<param name="loop" value="true">
<param name="menu" value="false">
<embed type="application/x-shockwave-flash"
pluginspage=" width="190" height="90"
name="top_header" src="imagens/top_header.swf"
bgcolor="#FFFFFF"
wmode="transparent"
quality="best"
menu="false"
loop="true"
swLiveConnect="true"
allowScriptAccess="samedomain"
></embed>
</object>
 
Try removing the &lt;/embed&gt; and adding a close slash (on the same line... shown in red):
Code:
allowScriptAccess=&quot;samedomain&quot;
 [COLOR=red][b]/[/b][/color]&gt;[s]&lt;/embed&gt;[/s]
&lt;/object&gt;
Just a thought.

Cheers,
Jeff

[tt]Jeff's Page [/tt][tt]@[/tt][tt] Code Couch
[/tt]

What is Javascript? faq216-6094
 
From memory (bear in mind this was about 2 years ago) I had a similar problem.

It turned out that the swf file was a different Flash version than the one that was indicated by the html.
I'll keep thinking as that may not be exactly it, but I'm pretty sure that it was something to do with version numbers.

Foamcow Heavy Industries - Web design and ranting
Buy Languedoc wines in the UK
 
its working, i did that /> and erased the </embed>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top