A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: Want to get Flash Movie to fill up all browsers

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

    Post

    This is embarrasing, but I can't hold out any more. How do you get Flash to resize in everybody's browser full screen?

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

    Post

    That's actually a two part process..

    1) Under Publish Settings, HTML tab, set "Dimensions" to "Percent" and enter a height and width of 100, also set "Scale" to "Exact Fit".


    2) Now.. to remove that 10 pixel border which will inevitably appear around your movie, you have two options.

    a) You can include these properties inside the BODY tag of your HTML document:

    marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"

    That will work with browsers version 4 and up.

    b) You can create an HTML FRAMESET document like this:

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

    That will work with all browsers that support frames (IE 3 and up, and Netscape 2 and up).


    I hope that helps, and if you have any futher questions, please feel free to ask me.


    <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>

  3. #3
    Advance Motion Management
    Join Date
    Mar 2006
    Location
    India
    Posts
    84
    Thankz Scott, Its been helpful


    --
    Vini
    Its in my Blood, B+



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