A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: Dreamweaver Question ?????

  1. #1
    Junior Member
    Join Date
    Feb 2001
    Posts
    20

    Post

    How do I make a window that will open on different size monitors and will always fill the whole screen? Two many people are looking at my web site with there browser window only open half way. I can't stand it. My web site was made to fill an entire 15 inch monitor.

    Doug

  2. #2
    Senior Member
    Join Date
    Mar 2001
    Posts
    123
    If you know how to do some java programming then all you have to do is find the screen resolution on the persons computer and then scale you website occordingly.

    I don't know any java but if you find out how to do it the right way please send me an e-mail by clicking on my banner.

    Thanx.

  3. #3
    insert this function in your javascript section
    function open(){
    window.moveTo(0,0);
    window.resizeTo(screen.availWidth,screen.availHeig ht);
    }

    then add this to your body tag
    onload="open()"

    that should do the trick.

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