2

I want the window to be always in front of all of the app windows, but when the app is deactivated I don't want the window to be in front of the other apps.

Stephen Horvath
  • 5,188
  • 3
  • 24
  • 31

1 Answers1

3
<mx:Window xmlns:mx="http://www.adobe.com/2006/mxml" alwaysInFront="true" initialize="onInitialize()">
<mx:Script>
    <![CDATA[
        private function onInitialize():void {
            addEventListener(Event.DEACTIVATE, onAppDeactivate);
            addEventListener(Event.ACTIVATE, onAppActivate);
        }

        private function onAppDeactivate(event:Event):void {
            alwaysInFront=false;
        }

        private function onAppActivate(event:Event):void {
            alwaysInFront=true;
        }
    ]]>
</mx:Script>
</mx:Window>
Stephen Horvath
  • 5,188
  • 3
  • 24
  • 31