PDA

View Full Version : Running and AIR app in the background


adamscott421
06-04-2009, 04:22 PM
I'm making an air app that gets launched from the browser, gets some info and sned it back to the browser. Is there a way to have the app not have a window pop up and just run in the background. The app will only be running for like a second.

xylar2
06-09-2009, 01:02 PM
systemchrome off and set the window as transparent ?

evride
06-09-2009, 01:19 PM
you don't even need a window.


NativeApplication.nativeApplication.autoExit = false;
NativeWindow(this.stage.nativeWindow).close();


then when you are done running the program


NativeApplication.nativeApplication.exit();


I would suggest going into the AIR settings and uncheck the Visible property for the initial window in Advanced Settings section.

saravanan
06-17-2009, 02:12 PM
Try this to hide application from taskbar too..

http://www.designscripting.com/2008/11/11/adobe-air-application-without-appearing-in-taskbar/