Can I start an AIR application at startup?

Is it possible for an AIR application to add itself to the list of boot programs? (I would like to do this work on several platforms, namely Windows, Mac and Linux). How can I do it?

+4
source share
2 answers
if (NativeApplication.supportsStartAtLogin) { NativeApplication.nativeApplication.startAtLogin = true; } 

This will launch the application when the user logs in, not the OS, but this is the closest you can get.

+4
source

See: β€œFrom a browser” web application launched at startup?

The main answer:

The bkMark application from http://www.adobe.com/devnet/air/samples_javascript.html shows how to start an AIR application at startup.

0
source

Source: https://habr.com/ru/post/1332133/


All Articles