hava uygulamasını güncellemek için nasıl sonra sistemi yükleyin. yeniden edilemez güncellenen otomatik olacak? Bu possiable nedir?
Onlar güncellemek için ... veya sessizce / ihtiyacını istediğiniz her zaman haberdar olmak için app programlayabilir isterseniz app kullanıcı sorabilirsiniz.
Eğer güzel bir öğretici nasıl burada otomatik güncelleme üzerine arıyoruz.
http://www.adobe.com/devnet/air/flex/quickstart/update_framework.html
Ayrıca daha fazla bilgi için esnek yardım sayfalarını danışın.
Edit
It would appear that the link in the original answer is broken, so I have edited this answer to provide a current, working link to a tutorial for how to check for updates to your air application and auto update, not update the AIR runtime, as per the OP request.
http://www.adobe.com/devnet/air/articles/air_update_framework.html
Üzgünüm, seni özledim anlaşılan :)
Cevap Evet!
Step 1. yeni bir güncelleme uygulamanız için kullanılabilir olup olmadığını ap içinde kontrol etmek için bir yol bulmak.
Step 2. yeni uygulamalar sürümü indirin (ex app_V1.1.air)
Step 3. bu kodu kullanın ....: 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 details... consult the flex help pages and search for flash.desktop.Updater
Adrian