1. In the application's application.xml file, set the systemChrome tag to none.
2. Set the transparent tag to true.
3. Flex automatically starts with the
This should hide the chrome. You will need to provide functions for moving, resizing, and closing the application.
If you need to drag/move a window in AIR, stage.window.startMove() does not work. Its stage.nativeWindow.startMove(). window was replaced by nativeWindow.
To close the application, add a function to handle the close event and include this call:
stage.nativeWindow.close();
