Results 1 to 2 of 2

Thread: Full Screen.

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jul 1999
    Posts
    207

    Cool

    Here is a question for you all. Does anyone have any idea on how to make a IE screen go to full screen mode when you enter a site. As if that wasn't enough. I would also like it to return to a normal size screen when the user leaves. Any examples in javascript or vbscript(prefered so it will be ignored by netscape) would be much appreciated.

    Jeremy

  2. #2
    Frenzied Member Mark Sreeves's Avatar
    Join Date
    Nov 1999
    Location
    UK
    Posts
    1,845
    Try this for starters:


    Code:
    <HTML>
    <HEAD>
    <script language="JavaScript"><!--
    function DoIt()
    {
        if (document.all)
    		{
    		window.moveTo(0,0);
            window.resizeTo(screen.width,screen.height);
           }
    }
    //--></script>
    </HEAD>
    <BODY onLoad="DoIt()">
    
    
    </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