CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 1999
    Posts
    1

    Opening new windows

    I can easily open a new window using "window.open" command but I want to be able to specify the IE option of "fullscreen" WITH the tool buttons at the top AND the resizing buttons in the corner.

    Anyone know how to do this in an applet?
    Perhaps I should use HTML?

    Thanks in advance,

    Wes


  2. #2
    Guest

    Re: Opening new windows

    asdf


  3. #3
    Join Date
    Jun 2000
    Location
    Austria
    Posts
    46

    Re: Opening new windows

    For doing that in JavaScript from HTML I would suggest you the following link, which leads to the documentation of the window.open() method. The explanations are in German, but the arguments and the example provided should speak for themselves anyway. www.teamone.de/selfhtml/tecb.htm#a35
    In order to do that from an applet maybe you should write an HTML page with just the JavaScript command to close itself page and open another one with the window options specified. Then call the first page from the applet and let JavaScript play the middleman.


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

Featured