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.
views:
143answers:
1
+1
A:
<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
2010-03-10 09:01:56