Flex/Adobe Air application as service

1k views Asked by At

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.

1

There are 1 answers

0
alxx On BEST ANSWER

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.