This content has been marked as final.
Show 2 replies
-
1. Re: size of system chrome
Admiral_Brodnack Aug 10, 2008 4:42 PM (in response to sbaldizz)The status bar isn't system chrome, it is provided by Flex.
The width of the border (assuming left == right) can be computed from:
border width= (nativeWindow.width - stage.stageWidth)/2
The title bar can be computed, assuming the bottom border is the same as the side border:
Titlebar height = nativeWindow.height - stage.stageHeight - (nativeWindow.width - stage.stageWidth)/2
(The property names are off the top of my head, stage.stageHeight could be stage.height, etc...) -
2. Re: size of system chrome
sbaldizz Aug 10, 2008 11:10 PM (in response to Admiral_Brodnack)Thanks!
Only a note: on Mac the systemchrome have only the titlebar, no border on left, right and bottom....
