Need Help Centering a SWF on page

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Need Help Centering a SWF on page

    i need a straight forward answer on how to center the website i designed in
    flash in a browser window, no matter what the screen resolution is.

    exact html would be awesome.
    the swf is called "LEI.swf"

    i've been looking for quite a few weeks now, and keep getting confused with
    people's answers.
    thanks a lot whoever helps.

    Leif

    LeifKolt Guest

  2. Similar Questions and Discussions

    1. Centering Page...Someone PLEASE help me!
      Pages like macromedia.com, yahoo.com, sports.yahoo.com, etc. are automatically centered in a web browser....or pages like MLB.com are fit to take up...
    2. centering web page
      I am trying to make my web page look centered in the browser screen, and have tried inserting the <center> tag after the <body> tag, as per Mr...
    3. centering a frame on the page
      I have an empty frame in between two frames with content (above and below it). The middle frame will have content loaded in it on button clicks. I...
    4. Web Page Centering in Pub XP
      David Bartosik's site tells how to do it with a Publisher 2000 created web site. It's the one I use and his "how to" works. ...
    5. Centering a Page
      A few simple methods would be to use a <center> tag wrapped around your table, align your table with the center parameter (align = center within the...
  3. #2

    Default Re: Need Help Centering a SWF on page

    <table border="0" width="100%" cellspacing="0" cellpadding="0" align="center">
    <tr><td>

    <!-- insert SWF code here -->

    </td></tr>
    </table>
    mzanime.com Guest

  4. #3

    Default Re: Need Help Centering a SWF on page

    i tried to enter the code you gave me, but i think i put it in the wrong place.
    this is what my HTML looks like before trying to add in the code, thanks for
    the help!


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Legal Ease Inc. Home</title>
    <style type="text/css">
    <!--
    body {
    background-color: #CCCC99;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 00px;
    }
    -->
    </style></head>

    <body>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    rsion=6,0,29,0" width="780" height="500">
    <param name="movie" value="LEI.swf">
    <param name="quality" value="high">
    <embed src="LEI.swf" width="780" height="500" quality="high"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"></embed>
    </object>
    </body>
    </html>


    LeifKolt Guest

  5. #4

    Default Re: Need Help Centering a SWF on page

    <table border="0" width="100%" cellspacing="0" cellpadding="0" align="center">
    <tr><td>

    <!-- insert SWF code here -->

    <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    rsion=6,0,29,0" width="780" height="500">
    <param name="movie" value="LEI.swf">
    <param name="quality" value="high">
    <embed src="LEI.swf" width="780" height="500" quality="high"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"></embed>
    </object>

    </td></tr>
    </table>

    SugnaShane Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139