A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: Help with boarders

  1. #1
    Junior Member
    Join Date
    Mar 2000
    Posts
    2

    Question

    Can anyone help?

    When I view my flash movie in a browser I notice a boarder around the movie display window which really stands out because the movie has a patterned background. Does anyone know how to eliminate this boarder?

    Thanks
    WooF

  2. #2
    Junior Member
    Join Date
    Mar 2000
    Posts
    8

    Lightbulb

    Hi Woof (nice nick),

    Try to publish the move to transparant!
    (publish settings --> HTML --> Window mode --> Transparant Windowless)

    Greetz Robbert

  3. #3
    Senior Member
    Join Date
    Feb 2000
    Posts
    195

    Lightbulb

    If I understand correctly.. you are trying to remove the default 10 pixel margin which browsers display by default..

    There are several ways to do that.. my favorite is to use an HTML FRAMESET document, like this:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN"
    "http://www.w3.org/TR/REC-html40/frameset.dtd">

    <html>

    <head>
    <title></title>
    </head>

    <frameset rows="*,0" frameborder="no" framespacing="0" border="0">
    <frame src="flashmovie.html" marginheight="0" marginwidth="0" scrolling="no">
    <frame src="blank.html" marginheight="0" marginwidth="0" scrolling="no">
    </frameset>

    </html>

    If you need further help with that.. let me know.


    <EMBED src="/cgi-bin/ubb/Members/sigs/00000205.swf" quality=high WIDTH=500 HEIGHT=50 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> </EMBED>

  4. #4
    Junior Member
    Join Date
    Apr 2000
    Posts
    4

    Red face

    no no n oooooo

    you only have to link to your swf flie instead of your html.

    ( www.angelfire.com/pe/xflash/xflash2.SWF )

  5. #5
    Junior Member
    Join Date
    Mar 2000
    Posts
    10

    Post


    Linking to the .swf file works, but you cannot have any interaction with the browser through javascript that way. That's probably why most choose to create the empty frameset as mentioned by Scott.

    g'luck,
    Jacco

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