vote up 0 vote down star

I am trying to center a launched window in flex, there is a NativeWindow.x and NativeWindow.y but flex uses the Window class which does not have these properties, so does anyone know how to center a window? Thanks!!

flag

2 Answers

vote up 2 vote down check

I figured it out:

window.nativeWindow.x = (Screen.mainScreen.bounds.width - window.width)/2;
window.nativeWindow.y = (Screen.mainScreen.bounds.height - window.height)/2;

I think you have to call this AFTER window.open() though.

link|flag
Hehe... you have answered your question. From what I know... this is the right way to do it :) – Adrian Pirvulescu Jul 3 at 17:48
vote up 0 vote down

isn't this better?

example docs:

// center the window on the screen
var screenBounds:Rectangle = Screen.mainScreen.bounds;
nativeWindow.x = (screenBounds.width - nativeWindow.width) / 2;
nativeWindow.y = (screenBounds.height - nativeWindow.height) / 2;

from livedocs: about window containers ยจ

both solutions worked for me even on multiple screen system (Win7)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.