zarmaca
zarmaca

Reputation: 21

is it possible to pin AIR app over any opened windows?

I need to pin AIR application over other windows, I mean, regardless if AIR application is in focus or not, it must not hide, it always must be shown, whatever other program I activate or work with, AIR application must be over every window always. Is it possible? If it is, please show me the function (example code will be better :) ) which does it, incase if AS3 has one.

Upvotes: 0

Views: 64

Answers (1)

someOne
someOne

Reputation: 1675

You're looking for the alwaysInFront property of the NativeWindow class:

The alwaysInFront property specifies whether this window will always be in front of other windows (including those of other applications).

  • The following example forces a window to be displayed in front of all other windows (that are not similarly forced to the front):
    windowObj.alwaysInFront = true;

  • Another example with a reference to a display object on the window stage:
    displayObject.stage.nativeWindow.alwaysInFront=true;

Upvotes: 1

Related Questions