Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

new window in fullscreen

Status
Not open for further replies.

ElRider

IS-IT--Management
Dec 28, 2006
5
0
0
AT
Hi! It's me again. really important: How do I open a new window in fullscreen [and all objects should be scaled]?
And how can I open it (automatically) on a second monitor?!
it's not easy, I know. (espeacially for me)
thanks for ya replies.
El Rider
 
Code:
  window("child").filename = "child.dir"
  secondMonitorRect = _system.desktopRectList[2]
  w = secondMonitorRect.right - secondMonitorRect.left 
  h = secondMonitorRect.bottom - secondMonitorRect.top
  childDrawRect = rect(0, 0, w, h)
  window("child").drawRect = the desktopRectList[1]
  window("child").rect = secondMonitorRect
  window("child").open()

Kenneth Kawamoto
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top