Hello everybody,
I want to provides an option in my air/flex application. A user can check an option and the application starts when windows starts.
I don't find with google how to do this, someone knows do that ?
Thanks.
Hello everybody,
I want to provides an option in my air/flex application. A user can check an option and the application starts when windows starts.
I don't find with google how to do this, someone knows do that ?
Thanks.
You cannot start a flex app when Windows boots; but u can launch an AIR app when the user logs in (not when windows boots up). It can be done with:
NativeApplication.nativeApplication.startAtLogin = true;
Check this for details