Sorry, I missed - I understand you :)
Answer: Yes!
Step 1. Find a way to check inside ap if a new update is available for your application.
Step 2. Download the new version of the application (ex app_V1.1.air)
Step 3. Use this code ....: D
import flash.fileSystem.File; import flash.desktop.Updater; var updater:Updater = new Updater(); var airFile:File = File.applicationStore.resolvePath("app_V1.1.air"); var version:String = "1.1"; updater.update(airFile, version);
For more information ... refer to the flex help pages and search for flash.desktop.Updater
Adrian
source share