Hi Guys,

I have a flex air application which I build it in my desktop and port
it to the clients with a CD/DVD.

I have tried building a sample air application and with two versions
with customUpdateUI=true in my application XML file.

With this when I install version1 it gets installed normally.

When the user wants to update his version to version2 he has to
manually copy the air file to the desktop from the CD.Since I have
been using below code:

public function
updateVersion(updatedVersionName:String,updatedVersionAir:String):void{
var updater:Updater = new Updater();
var airFile:File =
File.desktopDirectory.resolvePath(updatedVersionAir);
var version:String = updatedVersionName;
updater.update(airFile, version);
}

When he runs the air file from the desktop it first opens the version1
UI and there he has to click the update link there which calls the
above function to update his version.

Is there no other better way to manage this scenario.All the examples
I see in the internet are downloading from remote server but my case
is that the client doesn’t have internet access.

Thanks in advance.
pappu.

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.

Reply via email to