Set the childList argument to PopUpManagerChildList.POPUP
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of nxzone Sent: Monday, November 19, 2007 1:12 PM To: [email protected] Subject: [flexcoders] always on top windows How we can put a windows ontop of all other window not matter from where it comes and if we added new window since... #My first try was to create a popup parent of Application. NoteWindow(PopUpManager.createPopUp(DisplayObject(mx.core.Application.ap plication), NoteWindow, false)); #and bring it to front each 1 second. This was "perfect" but my combobox was loosing focus each second... This will be ok if i can find a solution to check ONLY if the window is not on top then bring it... public function init():void{ t= new Timer(1000) t.addEventListener(TimerEvent.TIMER,tic) t.start() } public function tic(e:Event):void{ PopUpManager.bringToFront(this) } May be it's possible to put it modal and then removing the "blur" layer under the windows? Any idea?

