Hi all, I'm trying to mimic Expose-style functionality in an AIR app I'm developing -- when the user presses a shortcut key, all of the open tabs in the application should become visible in a full-screen, translucent overlay window. (E.g. like: http://www.rogergordon.net/blog/wp-content/uploads/2007/11/expose.png)
After creating a window, I set the following properties: layout = "absolute"; setStyle("backgroundAlpha", "0.5"); width = Screen.mainScreen.bounds.width; height = Screen.mainScreen.bounds.height; showGripper = false; showStatusBar = false; showTitleBar = false; systemChrome = NativeWindowSystemChrome.NONE; transparent = true; When I finally set stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE; things work as expected, except there is a small (about 10x10 pixels) non-transparent background-colored square right in the middle of the screen/window. I can't figure out a way to remove it (at this point, no children have been added to the window yet). Thanks for any ideas or suggestions! Eugene