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.application),
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?