Is it possible to make an AIR app appear only in the system
tray and not in the bar where all opened windows usually are (I’m
sorry I don’t know how this is called)?|||
It is possible , you place your UIComponents on another
<mx:Window type=”lightweight”> container , set
<mx:WindowedApplication autoExit=”false” , write the an event
handler for applicationComplete of the
<mx:WindowedApplication> , close nativeWindow.close(); ,
create and open your new Window object|||
You can also just hide the main window (set visible to false)
to remove it from the taskbar, or never make it visible in the
first place, if you never want it visible.
The article,
http://www.adobe.com/devnet/air/flex/quickstart/creating_toast-style_w indows.html,
shows one approach. You can also use the example program at
http://www.adobe.com/devnet/air/flex/quickstart/launching_windows.html
to see the effects of the various native window properties.|||
Thank you for your suggestions!
Related posts:
- Appear Only in System Tray
- System tray notifications–Is it possible?
- AIR System Tray Icon – does it support notifications?
- Application without Taskbar icon
- Explanation of how multiple applications/windows work
Related posts brought to you by Yet Another Related Posts Plugin.