views:

78

answers:

1

i setup alwaysOnTop="true" in mx:WindowedApplication alwaysOnTop="true" tag. but this does not work in MAC but works in windows. How can i solve this for MAC?

+1  A: 

Just tested this on Leopard, to keep a window in front of all other windows, in MXML (also works in actionscript) - do this:

<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" 
    layout="absolute" width="1024" height="768"
    alwaysInFront="true">
Gabriel