new window in fullscreen
new window in fullscreen
(OP)
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
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
RE: new window in fullscreen
CODE
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
www.materiaprima.co.uk