tags:

views:

24

answers:

2

Hello all,

I develop an flex application and I need your help. The window must be in foreground everytime.

I would like to know how I can catch the event when the window losts the focus and how put the window in foreground.

Thanks for your answers.

+1  A: 

If your application is in AIR then you can use this:

Application.application.nativeWindow.alwaysInFront = true;

This will force your window to be ontop.

robmcm
A: 

Yes I found that too, thanks ;)

Kiva