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

IE skips flash intro

Status
Not open for further replies.

SexyDevil82

Programmer
Jan 9, 2004
24
CA
I created my first flash intro ever. It is working perfect in Firefox. When I load the page, the flash intro is there and you can click on ENTER and it brings you to the WELCOME page.

In IE, when I type the URL in the browser, the page that comes up is the welcome page. As if IE just ignores my intro.htm which contain the flash intro and skips to the next page (index.htm)

I was told that it was because of SP2 but I couldn't find any fix. Any suggestions?

Here is the code in case it helps:

<html>
<head>
<title>Untitled</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="en">
</head>

<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="750" height="550">
<param name="movie" value="LAUBACH.swf">
<param name="quality" value="high">
<embed src="LAUBACH.swf" quality="high" pluginspage=" type="application/x-shockwave-flash" width="750" height="550"></embed>
</object>
</body>
</html>
 
I added <meta NAME="distribution" CONTENT="global"> and it solved my problem. Thanks anyways :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top