If you want to use AIR's framework take a look at docs: Updating AIR applications <http://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7ff2.html> Using the update framework <http://help.adobe.com/en_US/air/build/WS9CD40F06-4DD7-4230-B56A-88AA27541A1E.html>
There is also nativeapplicationupdater on github <https://github.com/pwalczyszyn/nativeapplicationupdater/blob/master/src/com/riaspace/nativeUpdater/NativeApplicationUpdater.as> and on google code <https://code.google.com/archive/p/nativeapplicationupdater/> for native desktop apps. It is easy thing to do. Most important thing is to understand workflow. It can be like this: When app starts it must: 1. check /yourserver/update.xml/ for newer version 2. if there is newer; download, install (for this you can use AIR's update framework or some custom one) Setting new app version: 1. Replace /yourserver/yourapp.exe/ with new version 2. edit version information in /yourserver/update.xml / /update.xml/ contains link for latest /yourserver/yourapp.exe/ and its version label. -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Updating-a-Program-tp14613p14621.html Sent from the Apache Flex Users mailing list archive at Nabble.com.
