A Flash Developer Resource Site

Results 1 to 6 of 6

Thread: full screen

  1. #1
    Member
    Join Date
    Oct 2001
    Posts
    36
    I'm making a intro for my website and I'm not sure how to make the flash file full screen for diffrent resolutions or if it does it automatically?


    Thanks
    Shawn J.

  2. #2
    Member
    Join Date
    Jun 2002
    Posts
    41
    you can have an intro html file w/ your logo. When clicked, javascript can open a new html window full screen containing your flash....Is this what you want??

  3. #3
    Member
    Join Date
    Oct 2001
    Posts
    36
    actually i wanting to know if I create a flash file thats 500 x 500 pxs can i make it full screen on everyones monitors even if they have diffrent resolutions

  4. #4
    Owner of the ™ thread tublu's Avatar
    Join Date
    Nov 2000
    Posts
    2,430
    use javascript and use fulscreen=yes

  5. #5
    ViresExDecus dewman's Avatar
    Join Date
    Nov 2001
    Posts
    389

    Re:

    here's a script one guy helped me out on... this is so nothing has to open in a new window:
    <script>
    var owidth= screen.width;
    var oheight = screen.height;

    var width = owidth * .9;
    var height = oheight * .9;

    document.write("<embed tag width="+width+" height="+height+" loop='false' src='movieintro.swf'>");
    </script>
    <noscript><embed width="500" height="500" loop= "false" src="movieintro.swf" align="top">
    </noscript>
    and to use the max, set the page margins to 0
    hope that helps
    dewman

  6. #6
    Moderatee monark110's Avatar
    Join Date
    Oct 2001
    Location
    IL
    Posts
    157
    i think that you can also use the FSCommand in flash, but i am not quite sure.

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