vote up 1 vote down star
2

Any clues how this can be achieved? It needs to work on all resolutions .. is there any parent/stage object available to find out the resolution of the system?

flag

2 Answers

vote up 2 vote down check
public function init():void
{
    nativeWindow.x = ( Screen.mainScreen.bounds.width - 300 ) 
    nativeWindow.y = ( Screen.mainScreen.bounds.height - 65 ) 				
}

This is a 300x65 window positioned in the bottom right. You are looking for Screen.

link|flag
Brilliant .. thanks! :D – Srirangan Aug 18 at 5:14
vote up 0 vote down

Another option is to create a transparent window, then maximise it, then position your window inside the transparent one, using standard bottom=0 right=0 properties.

The advantage is that maximise will take into account the windows task bar height, which could change depending on the users set up.

The disadvantage, is that the transparent window will look really ugly on systems that don't support transparency (some Linux builds).

I am also not sure how this works on OSX, you could integrate with Growl, or if on OSX do the window in a different way (DIY Growl).

link|flag
Make sense. Any idea which are the Linux builds that would not support transparent windows? Also.. any other ways to avoid the taskbar height issue. – Srirangan Aug 19 at 12:01

Your Answer

Get an OpenID
or

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