A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: bacground?

  1. #1
    Junior Member
    Join Date
    Jul 2002
    Posts
    1
    Hiya, can anyone tell me how i could use flash as a background image? The effect i want is to have a white table is middle of page with flash showing all around the edge. Is this possible?

  2. #2
    Senior Member
    Join Date
    Jun 2002
    Posts
    217
    Simple...

    The HTML would be:

    um, right click > view source
    look for a bunch of *'s

    Sadly the formatting is lost though...

    <html>
    <body bgcolor="000000" text="#FFFFFF">
    <!--a bunch of *'s ************************************************** ************************************************** ************************************************** ************************************************** ************************************************** ************************************************** ************************************************** **********-->
    <div style="position:absolute; left:0px; top:0px; width:100%; height:100%; z-index:1">
    <!--flash movie here-->
    </div>
    <!--the z-index:1 is all your looking for-->
    <!--z-index means 'where would the layer be on the z plane'-->
    <!--1 is the lowest and you can have as many layers as you want-->
    <table width="100%" border="0" height="100%">
    <tr>
    <td width="33%" height="33%">
    <p> </p>
    </td>
    <td width="33%" height="33%">
    <p> </p>
    </td>
    <td width="33%" height="33%">
    <p> </p>
    </td>
    </tr>
    <tr>
    <td width="33%" height="33%">
    <p> </p>
    </td>
    <td width="33%" height="33%" bgcolor="#FFFFFF">
    <p><font color="000000">You would put content here</font></p>
    </td>
    <td width="33%" height="33%">
    <p> </p>
    </td>
    </tr>
    <tr>
    <td width="33%" height="33%">
    <p> </p>
    </td>
    <td width="33%" height="33%">
    <p> </p>
    </td>
    <td width="33%" height="33%">
    <p> </p>
    </td>
    </tr>
    </table>
    </body>
    </html>

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