Results 1 to 3 of 3

Thread: Multiple monitors with child window

  1. #1
    Join Date
    Jun 2008
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Multiple monitors with child window

    Is there a way with jscript to open a new window, either child window or pop-up window on a secondary display. I am working on a application and this would really help me out. Thanks in advance for your help.

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Do you mean to open the window in back of the window the parent window?
    Jeremy | jfein.net

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    It's been awhile since I worked with multiple monitors. As I recall, there are two ways (perhaps more) this can be set up:

    1. You can have two monitors, each showing the same thing.
    2. You can have two monitors, the second of which represents an extension of your screen or 'desktop' area.


    If it's the second case, since you can open a window anywhere on the desktop, I would think you could open one on the extended portion of the desktop that is visible on the second monitor.

    Also, if I remember correctly, you can (virtually) put the second monitor either 'on top' (above) the current or primary monitor, or to the left of it. Once there, you can drag windows over to it. If it were to the left, and - say your primary screen were 1024 pixels wide, you would be able to do:

    Code:
    window.open('some.htm','m2','top:0, left:1050');
    and it should open a window on the second monitor.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •