Is it possible to develop flex/Air application as a service. The application doesn't require any GUI it should run as service in embedded Linux/Linux/Windows.
Asked
Active
Viewed 1,006 times
1 Answers
2
AIR cannot run as a true service. But it can be started on user login (not with system start) with NativeApplication.nativeApplication.startAtLogin = true
and you can hide it from taskbar (see this question), so you can get quite close to service behavior.