A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: flash doesn't show in IE browser

  1. #1
    Member
    Join Date
    Jul 2003
    Posts
    45

    flash doesn't show in IE browser

    I have designed a flash movie and published it in flash 4 but the html has been changed and the movie no longer appears in the IE browser.

    Do you have any idea where I have gone wrong?

    Here is the html:

    <HTML>
    <HEAD>
    <meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
    <TITLE>Johnny No Stars</TITLE>
    </HEAD>
    <BODY bgcolor="#FFFFFF">
    <table width="94%" height="658" border="0" align="center">
    <tr>
    <td width="14%" height="652" align="center" valign="middle"> </td>
    <td width="100%" align="center" valign="middle" nowrap>
    <OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
    WIDTH="500" HEIGHT="600" hspace="100" vspace="90" ALIGN="absmiddle">
    <PARAM NAME=movie VALUE="cars.swf">
    <PARAM NAME=quality VALUE=high>
    <PARAM NAME=bgcolor VALUE=#FFFFFF>
    <param name="SCALE" value="exactfit">
    <EMBED src="cars.swf" WIDTH="500" HEIGHT="600" hspace="100" vspace="90" ALIGN="absmiddle" quality=high bgcolor=#FFFFFF
    TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" scale="exactfit"></EMBED>
    </OBJECT>
    </td>
    <td width="14%"> </td>
    </tr>
    </table>
    </BODY>
    <sum> </HTML>

  2. #2
    serial loser Progenitor's Avatar
    Join Date
    Oct 2000
    Location
    Ireland...for now!
    Posts
    406
    make sure you haven't moved your SWF into a different folder.

    what did you change in your HTML?
    Last edited by Progenitor; 08-28-2003 at 10:33 AM.
    A conclusion is simply the place where you got tired of thinking.
    If at first you DO succeed, try not to look astonished!

  3. #3
    Member
    Join Date
    Jul 2003
    Posts
    45
    I have done so and the movie is still blank. This is really baffling
    me and my deadline is tommorow.

  4. #4
    serial loser Progenitor's Avatar
    Join Date
    Oct 2000
    Location
    Ireland...for now!
    Posts
    406
    Is it just a SWF file in a table with 1 cell - you trying to embed your SWF into a table with html?

    if so try this:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>

    <body bgcolor="#7CB7D6" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll="no">
    <div align="center">
    <p>&nbsp;</p><table width="77%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="703"><object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="500">
    <param name="movie" value="flash.swf">
    <param name="quality" value="high">
    <embed src="flash.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="500"></embed></object></td>
    </tr>
    </table>
    </div>
    </body>
    </html>


    just change the values!!!! and change the smiley face to a ":" & a "D"
    Last edited by Progenitor; 08-28-2003 at 11:06 AM.
    A conclusion is simply the place where you got tired of thinking.
    If at first you DO succeed, try not to look astonished!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center