Adobe® Flex® 4 Language Reference
Hide Packages and Classes List |  Packages  |  Classes  |  Index  |  Appendixes
air.update 
ApplicationUpdater 
Packageair.update
Classpublic class ApplicationUpdater
InheritanceApplicationUpdater Inheritance EventDispatcher Inheritance Object

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The ApplicationUpdater class defines the basic functionality of the update framework for Adobe® AIR® applications, without providing any default user interface. (The ApplicationUpdaterUI class includes update functionality and a default user interface.)

This class is included in the applicationupdater.swc file. Adobe® Flex™ Builder™ loads this class automatically when you create a project for Adobe AIR. Adobe® Flex™ SDK also includes this applicationupdater.swc file, which you should include when compiling the application if you are using Flex SDK.z

This class is included in the applicationupdater_ui.swc file included in the Adobe® Flex™ SDK.

Managing updates of applications can be complicated. The AIR update framework provides APIs to assist developers in providing good update capabilities in AIR applications. The functionality in the AIR update framework assists developers in the following:

  • Periodically checking for updates based on an interval or at the request of the user

  • Downloading AIR files (updates) from a web source

  • Alerting the user on the first run of the newly installed version

  • Confirming that the user wants to check for updates

  • Displaying information on the new update version to the user

  • Displaying download progress and error information to the user

The AIR update framework lets you store information about the update version of an AIR application in simple XML configuration files. For most applications, setting up these configuration files and including some basic code provides good update functionality to the end user.

Use the AIRUpdater class if you want to define your own user interface for use with the AIR update framework.

The update process includes a sequence of states. The currentState property of the updater object reflects the current state of the updater:

currentState value Description
"UNINITIALIZED"The updater has not been initialized.
"INITIALIZING"The updater is initializing.
"READY"The updater has been initialized
"BEFORE_CHECKING"The updater has not yet checked for the update descriptor file.
"CHECKING"The updater is checking for an update descriptor file.
"AVAILABLE"The update descriptor file is available.
"DOWNLOADING"The updater is downloading the AIR file.
"DOWNLOADED"The updater has downloaded the AIR file.
"INSTALLING"The updater is installing the AIR file.
"PENDING_INSTALLING"The updater has initialized and there are pending updates.

When testing an application using the AIR Debug Launcher (ADL) application, attempting to update the application results in an IllegalOperationError exception.

For details on using the AIR update framework, see the "Updating AIR Applications" chapter of Developing Adobe AIR Applications with Adobe Flex.

For details on using the AIR update framework, see the "Updating AIR Applications" chapter of Developing Adobe AIR Applications with Adobe Flash.

See also



Public Properties
 PropertyDefined By
  AIR-only configurationFile : File
The location of the configuration file that sets the values for delay and updateURL properties.
ApplicationUpdater
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  AIR-only currentState : String
[read-only] The internal state of the updater.
ApplicationUpdater
  AIR-only currentVersion : String
[read-only] The current version of the application.
ApplicationUpdater
  AIR-only delay : Number
The interval, in days, between periodic checks of new updates.
ApplicationUpdater
  AIR-only isFirstRun : Boolean
[read-only] Whether this is the first run after a successful update (true) or not (false).
ApplicationUpdater
  AIR-only isNewerVersionFunction : Function
A function that the updater should use to perform version comparisons.
ApplicationUpdater
  AIR-only previousApplicationStorageDirectory : File
[read-only] The previous location of the application storage directory, if it changed after an update.
ApplicationUpdater
  AIR-only previousVersion : String
[read-only] The previous version of the application.
ApplicationUpdater
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  AIR-only updateDescriptor : XML
[read-only] The content of the update descriptor file downloaded from the update URL.
ApplicationUpdater
  AIR-only updateURL : String
The location of the update descriptor file.
ApplicationUpdater
  AIR-only wasPendingUpdate : Boolean
[read-only] Whether there was a postponed update, even if it failed to install (true); false otherwise.
ApplicationUpdater
Public Methods
 MethodDefined By
  
The constructor function.
ApplicationUpdater
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
EventDispatcher
  
Cancels the update process.
ApplicationUpdater
  
Asynchronously downloads and interprets the update descriptor file.
ApplicationUpdater
  
Starts the update process.
ApplicationUpdater
 Inherited
Dispatches an event into the event flow.
EventDispatcher
  
Asynchronously downloads the update file.
ApplicationUpdater
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
EventDispatcher
 Inherited
Indicates whether an object has a specified property defined.
Object
  
Initializes the updater.
ApplicationUpdater
  
Starts the update process using a local AIR file.
ApplicationUpdater
  
Installs the update file.
ApplicationUpdater
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
EventDispatcher
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
EventDispatcher
Events
 Event Summary Defined By
 Inherited[broadcast event] Dispatched when the Flash Player or AIR application gains operating system focus and becomes active.EventDispatcher
  Dispatched just before installing the update, after the installUpdate() method was called.ApplicationUpdater
  Dispatched before the update process begins, just before the updater tries to download the update descriptor file.ApplicationUpdater
 Inherited[broadcast event] Dispatched when the Flash Player or AIR application operating loses system focus and is becoming inactive.EventDispatcher
  Dispatched when the download of the update file is complete.ApplicationUpdater
  Dispatched if there is an error while connecting or downloading the update file.ApplicationUpdater
  Dispatched after a call to the downloadUpdate() method and the connection to the server is established.ApplicationUpdater
  Dispatched when an error occurred either during initialization or during the update process (if something unexpected happens).ApplicationUpdater
  Dispatched when an error occurs validating the file passed as the airFile parameter in a call to the installFromAIRFile() method.ApplicationUpdater
  Dispatched after the updater successfully validates the file in the call to the installFromAIRFile() method.ApplicationUpdater
  Dispatched after the initialization is complete.ApplicationUpdater
  Dispatched after the initialization is complete.ApplicationUpdater
  Dispatched if an error occurs while trying to download or parse the update descriptor file.ApplicationUpdater
  Dispatched after the updater successfully downloads and interprets the update descriptor file.ApplicationUpdater
Property Detail
AIR-only 

configurationFile

property
configurationFile:File

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The location of the configuration file that sets the values for delay and updateURL properties. If this property points to a non-existent file, calling the initialize() method results in an Error being thrown.

Here is a sample configuration file:

 <?xml version="1.0" encoding="utf-8"?> 
         <configuration xmlns="http://ns.adobe.com/air/framework/update/configuration/1.0" >
           <url>app:/server/update.xml</url>
           <delay>1</delay>
        </configuration>

Instead of loading a configuration file, you can use ActionScript code to set the delay and updateURL properties.



Implementation
    public function get configurationFile():File
    public function set configurationFile(value:File):void

See also

AIR-only 

currentState

property 
currentState:String  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The internal state of the updater. The property can be set to the following values:

  • "UNINITIALIZED"—The updater has not been initialized.

  • "INITIALIZING"—The updater is initializing.

  • "READY"—The updater has been initialized

  • "BEFORE_CHECKING"—The updater has not yet checked for the update descriptor file.

  • "CHECKING"—The updater is checking for an update descriptor file.

  • "AVAILABLE"—The update descriptor file is available.

  • "DOWNLOADING"—The updater is downloading the AIR file.

  • "DOWNLOADED"—The updater has downloaded the AIR file.

  • "INSTALLING"—The updater is installing the AIR file.

  • "PENDING_INSTALLING"—The updater has initialized and there are pending updates.



Implementation
    public function get currentState():String
AIR-only 

currentVersion

property 
currentVersion:String  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The current version of the application. This property is set during a call to the initialize() method. It is set to the version from the application descriptor file.



Implementation
    public function get currentVersion():String
AIR-only 

delay

property 
delay:Number

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The interval, in days, between periodic checks of new updates.

A value of 0 (the default value) indicates that the timer is not active, so no periodic check is done. This can be set either via this property or via the configuration file. When the value is set using both methods, the value set using the property is used.

The default value is 0.



Implementation
    public function get delay():Number
    public function set delay(value:Number):void
AIR-only 

isFirstRun

property 
isFirstRun:Boolean  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Whether this is the first run after a successful update (true) or not (false). The updater sets this value during the call to the initialize() method. The developer should check that isFirstRun is set to true if there is a need to migrate data from one version to another.



Implementation
    public function get isFirstRun():Boolean

See also

AIR-only 

isNewerVersionFunction

property 
isNewerVersionFunction:Function

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

A function that the updater should use to perform version comparisons. By default, the update framework does a version comparison to detect whether the version from the remote site is newer than the version of the installed application. However, sometimes the default comparison does not match the developer's versioning scheme. Set this property to provide a new function that does the comparison.

The default comparision function accepts versions like x.y.z, where x, y, and z can contain letters and digits. There are some special conditions that the default comparision function recognizes. If the test function finds "alpha", "beta", or "rc" in the version strings, the order is alpha < beta < rc.



Implementation
    public function get isNewerVersionFunction():Function
    public function set isNewerVersionFunction(value:Function):void

Example  ( How to use this example )
The following code defines a custom function, customFn, for the appUpdate updater object. The example function is intentionally simple. Your custom function should return a Boolean value based on the rules of your versioning scheme.
appUpdate.isNewerVersionFunction = customFn; 

function customFn (currentVersion:String, updateVersion:String):Boolean 
{
    return updateVersion > currentVersion;
}
AIR-only 

previousApplicationStorageDirectory

property 
previousApplicationStorageDirectory:File  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The previous location of the application storage directory, if it changed after an update. The application storage directory location changes after an upgrade with a certificate migration. If there is no certificate migration, the application storage directory does not change when the user updates the application. and this property is set to null. This property is set during a call to the initialize() method.

A developer can sign new version of AIR application with a new certificate if the developer uses the -migrate option when packaging the AIR file with ADT. If a new version of an AIR application uses a new signing certificate, the local storage directory of the application changes when the user installs the new version. Use this property to transfer data from the old application storage directory to the new application storage directory (File.applicationStorageDirectory). For more information, see "Signing an AIR file to change the application certificate" in the "Creating an AIR application using the command line tools" chapter of the Adobe AIR developer's guide.



Implementation
    public function get previousApplicationStorageDirectory():File
AIR-only 

previousVersion

property 
previousVersion:String  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The previous version of the application. This property is set during a call to the initialize() method. Returns the previous version of the application before the upgrade (set only if isfirstRun is true); otherwise it is set to null.



Implementation
    public function get previousVersion():String
AIR-only 

updateDescriptor

property 
updateDescriptor:XML  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The content of the update descriptor file downloaded from the update URL. This property is non-null only the updater object dispatches an updateStatus event.



Implementation
    public function get updateDescriptor():XML
AIR-only 

updateURL

property 
updateURL:String

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The location of the update descriptor file. Any location valid for a URLRequest path is accepted. This is the only mandatory setting required by the updater. You can set the update URL either via this property or via the configuration file. When the value is set using both methods, the updater uses the value set using this property.



Implementation
    public function get updateURL():String
    public function set updateURL(value:String):void
AIR-only 

wasPendingUpdate

property 
wasPendingUpdate:Boolean  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Whether there was a postponed update, even if it failed to install (true); false otherwise. The updater sets this property during a call to the initialize() method. Use the wasPendingUpdate and isFirstRun properties to check if an update failed to install (in which case wasPendingUpdate is set to true and isFirstRun is set to false).



Implementation
    public function get wasPendingUpdate():Boolean

See also

Constructor Detail
AIR-only 

ApplicationUpdater

()Constructor
public function ApplicationUpdater()

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

The constructor function.

Method Detail

AIR-only cancelUpdate

()method
public function cancelUpdate():void

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Cancels the update process. Calling this method cancels any pending downloads, deleting any incomplete downloaded files, and restarts the periodic check timer.

The update process can be canceled at any time except when the state machine is in "UNINITIALIZED" or "INITIALIZING" state. It does nothing when it is called in one of the "UNINITIALIZED" or "INITIALIZING" states.

AIR-only checkForUpdate

()method 
public function checkForUpdate():void

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Asynchronously downloads and interprets the update descriptor file. Calling this method advances the updater state to "CHECKING". Call this method only if the checkForUpdate event was cancelled.

This method only executes when the updater is in the "BEFORE_CHECKING" state.


Events
updateStatus:StatusUpdateEvent — The updater has successfully downloaded and interpreted the update descriptor file.
 
updateError:StatusUpdateErrorEvent — An error occured while trying to download or parse the update descriptor file.

AIR-only checkNow

()method 
public function checkNow():void

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Starts the update process. Calling this method does not stop the periodic timer; however, the method detects that an update process is running and will skip the current iteration.

This method only executes if the current state is "READY".

This method can result in the updater object dispatching the following event:


Events
checkForUpdate:UpdateEvent — Dispatched just before the update process begins.

AIR-only downloadUpdate

()method 
public function downloadUpdate():void

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Asynchronously downloads the update file. Calling this method advances the state machine to "DOWNLOADING". This method needs to be called only if the StatusUpdateEvent.UPDATE_STATUS event was cancelled when the available property of the event was true.

This method only executes if the current state is "AVAILABLE".


Events
downloadStart:UpdateEvent — Dispatched after the connection to the server is established.
 
progress:ProgressEvent — Dispatched after the initialization is complete.
 
downloadError:DownloadErrorEvent — Dispatched if there is an error while connecting or downloading the update file. It is also dispatched for invalid HTTP statuses (such as 404 - File not found).

AIR-only initialize

()method 
public function initialize():void

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Initializes the updater. Calling this method does the following:

  1. It initializes the update framework, silently (and synchronously) installing any pending updates. You should call this method during application startup, since it may restart the application.

  2. It checks if there is a postponed update and installs it.

  3. If something went wrong with a prior update, it clears the update file and version information from the storage area.

  4. If the periodic timer delay has expired, it starts the update process; otherwise it starts the periodic timer. However, when testing an application using the AIR Debug Launcher (ADL) application, attempting to update the application results in a IllegalOperationError exception.


Events
initialized:UpdateEvent — The initialization is complete.
 
error:ErrorEvent — There is an error during initialization.

AIR-only installFromAIRFile

()method 
public function installFromAIRFile(file:File):void

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Starts the update process using a local AIR file.

Calling this method has no effect if an update process is running (if the state is not "DOWNLOADED").

This function is useful for an application that has the customUpdateUI element set to true in the application descriptor file.

When testing an application using the AIR Debug Launcher (ADL) application, calling this method results in an IllegalOperationError exception.

Parameters

file:File — The local AIR file to install.


Events
fileUpdateStatus:StatusFileUpdateEvent — Dispatched after the updater successfully validates the AIR file.
 
updateError:StatusFileUpdateErrorEvent — Dispatched if an error occurs while trying parse the update descriptor file.

AIR-only installUpdate

()method 
public function installUpdate():void

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Installs the update file. Calling the method advances the state machine to "INSTALLING" and needs to be called only if the downLoadComplete event was cancelled.

Call this method when the updater is in the "DOWNLOADED" state. Calling it in any other state will do nothing.

When testing an application using the AIR Debug Launcher (ADL) application, calling this method results in an IllegalOperationError exception.


Events
beforeInstall:UpdateEvent — Dispatched just before installing the update. Sometimes it is useful to prevent the installation of the update at this time, because the user could lose all current work when the runtime exits the application to install the update.
Event Detail
AIR-only 

beforeInstall

Event
Event Object Type: air.update.events.UpdateEvent
property UpdateEvent.type = air.update.events.UpdateEvent.BEFORE_INSTALL

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched just before installing the update, after the installUpdate() method was called. Sometimes, it is useful to prevent the installation of the update at this time, because the user could lose all current work when the runtime exits the application to install the update.

Calling this event's preventDefault() method postpones the installation until the next restart. If you call the preventDefault() method, no additional update process can be started during this application session (via a call to the installUpdate() method or because of the periodic check).

The default behavior for ApplicationUpdater library is to download the update descriptor file. You can call the preventDefault() method to cancel this behavior.

The UpdateEvent.BEFORE_INSTALL constant defines the value of the type property of the event object for a beforeInstall event.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe updater object.
AIR-only 

checkForUpdate

Event  
Event Object Type: air.update.events.UpdateEvent
property UpdateEvent.type = air.update.events.UpdateEvent.CHECK_FOR_UPDATE

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched before the update process begins, just before the updater tries to download the update descriptor file. The updater can dispatch this event as a result of directly calling the checkNow() method or because the periodic check timer expired.

The UpdateEvent.CHECK_FOR_UPDATE constant defines the value of the type property of the event object for a checkForUpdate event.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe updater object.
AIR-only 

downloadComplete

Event  
Event Object Type: air.update.events.UpdateEvent
property UpdateEvent.type = air.update.events.UpdateEvent.DOWNLOAD_COMPLETE

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched when the download of the update file is complete.

Usually this event is used to display a message asking if the user wants to proceed with the installation of the update.

The default behavior for the the ApplicationUpdater library is to automatically call the installUpdate() method.

The UpdateEvent.DOWNLOAD_COMPLETE constant defines the value of the type property of the event object for a downloadComplete event.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe updater object.
AIR-only 

downloadError

Event  
Event Object Type: air.update.events.DownloadErrorEvent
property DownloadErrorEvent.type = air.update.events.DownloadErrorEvent.DOWNLOAD_ERROR

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched if there is an error while connecting or downloading the update file. It is also dispatched for invalid HTTP statuses (such as 404 - File not found).

When this event is dispatched the periodic timer is automatically restarted (if the delay is greater than 0).

The DownloadErrorEvent.DOWNLOAD_ERROR constant defines the value of the type property of the event object for a downloadError event.

The errorID property of a DownloadErrorEvent object is an integer defining error information (see the following table). An additional subErrorID property may contain more error information.

errorID Error codeDescription
16800Occurs during validating the downloaded update file. The subErrorID property may contain additional information.
16801Invalid Adobe AIR file (missing application.xml).
16802Invalid Adobe AIR file (missing MIME type).
16807Invalid Adobe AIR file (format).
16804Invalid Adobe AIR file (invalid flags).
16805Invalid Adobe AIR file (unknown compression).
16806Invalid Adobe AIR file (invalid filename).
16807Invalid Adobe AIR file (corrupt).
16808Configuration file does not exist.
16809The updateURL property is not set.
16810Reserved.
16811Invalid configuration file (unknown configuration version).
16812Invalid configuration file (URL missing).
16813Invalid configuration file (delay format).
16814Invalid configuration file (invalid defaultUI values).
16815Invalid update descriptor (unknown descriptor version).
16816Invalid update descriptor (missing update version).
16817Invalid update descriptor (invalid description).
16818IO error while saving data to disk. The subErrorID property may provide more information.
16819Security error while downloading. The subErrorID property may provide more information.
16820Invalid HTTP status code. The subErrorID property may contain the invalid status code.
16821Reserved.
16822I/O error while downloading. The subErrorID property may provide more information.
16823End-of-file error while saving data to disk. The subErrorID property may provide more information.
16824Invalid update descriptor. The subErrorID property may provide more information.
16825The update file contains an application with a different application ID.
16826The update file does not contain a newer version of the application.
16827The version contained in the update file does not match the version from the update descriptor.
16828Cannot update application, usually because the application is running in the AIR Debug Launcher (ADL).
16829Missing update file at install time.
AIR-only 

downloadStart

Event  
Event Object Type: air.update.events.UpdateEvent
property UpdateEvent.type = air.update.events.UpdateEvent.DOWNLOAD_START

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched after a call to the downloadUpdate() method and the connection to the server is established. When using ApplicationUpdater library, you may want the event handler for this event to display a progress bar to report the download progress to the user.

The UpdateEvent.DOWNLOAD_START constant defines the value of the type property of the event object for a downloadStart event.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe updater object.
AIR-only 

error

Event  
Event Object Type: flash.events.ErrorEvent
property ErrorEvent.type = flash.events.ErrorEvent.ERROR

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched when an error occurred either during initialization or during the update process (if something unexpected happens).

Defines the value of the type property of an error event object.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe object experiencing a network operation failure.
textText to be displayed as an error message.
AIR-only 

fileUpdateError

Event  
Event Object Type: air.update.events.StatusFileUpdateErrorEvent
property StatusFileUpdateErrorEvent.type = air.update.events.StatusFileUpdateErrorEvent.FILE_UPDATE_ERROR

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched when an error occurs validating the file passed as the airFile parameter in a call to the installFromAIRFile() method.

The StatusUpdateErrorEvent.UPDATE_ERROR constant defines the value of the type property of the event object for a statusUpdateError event.
AIR-only 

fileUpdateStatus

Event  
Event Object Type: air.update.events.StatusFileUpdateEvent
property StatusFileUpdateEvent.type = air.update.events.StatusFileUpdateEvent.FILE_UPDATE_STATUS

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched after the updater successfully validates the file in the call to the installFromAIRFile() method.

The StatusUpdateEvent.UPDATE_STATUS constant defines the value of the type property of the event object for a updateStatus event.

This event has the following properties:

PropertyValue
availableIndicates if if there is a different version available than one of the current application (true); false otherwise (same version).
pathThe nativePath property of the update File object specified by the airFile parameter in a call to the installFromAIRFile() method.
versionIndicates the version of the new update.

AIR-only 

initialized

Event  
Event Object Type: air.update.events.UpdateEvent
property UpdateEvent.type = air.update.events.UpdateEvent.INITIALIZED

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched after the initialization is complete.

The UpdateEvent.INITIALIZED constant defines the value of the type property of the event object for a initialized event.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe updater object.
AIR-only 

progress

Event  
Event Object Type: flash.events.ProgressEvent
property ProgressEvent.type = flash.events.ProgressEvent.PROGRESS

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched after the initialization is complete.

Defines the value of the type property of a progress event object.

This event has the following properties:

PropertyValue
bubblesfalse
bytesLoadedThe number of items or bytes loaded at the time the listener processes the event.
bytesTotalThe total number of items or bytes that ultimately will be loaded if the loading process succeeds.
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
targetThe object reporting progress.
AIR-only 

updateError

Event  
Event Object Type: air.update.events.StatusUpdateErrorEvent
property StatusUpdateErrorEvent.type = air.update.events.StatusUpdateErrorEvent.UPDATE_ERROR

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched if an error occurs while trying to download or parse the update descriptor file.

When the updater dispatches this event, the periodic timer is automatically restarted (if the delay setting is greater than 0). The application should consider hiding any error dialog boxes when the updater dispatches a new checkForUpdate event.

The StatusUpdateErrorEvent.UPDATE_ERROR constant defines the value of the type property of the event object for a statusUpdateError event.
AIR-only 

updateStatus

Event  
Event Object Type: air.update.events.StatusUpdateEvent
property StatusUpdateEvent.type = air.update.events.StatusUpdateEvent.UPDATE_STATUS

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.5

Dispatched after the updater successfully downloads and interprets the update descriptor file.

The default behavior is to start downloading the update if the available of the available property of the StatusUpdateEvent object is set to true. The default behavior can be prevented only when using the ApplicationUpdater class, not when using the ApplicationUpdatorUI class..

The StatusUpdateEvent.UPDATE_STATUS constant defines the value of the type property of the event object for a updateStatus event.

This event has the following properties:

PropertyValue
availableSet to true if the update descriptor file specifies a version that is different than that of the current application; false otherwise (the version is the same).
detailsAn array defining the details string for each of the supported languages. If there is no localized description, this is defined as an array in which the first element is an empty string ("") and the second element is the details string. When there are localized descriptions, each element in the array is an array itself with two elements. The first element is the locale code, and the second is the description. For example, the following array has sub-arrays for two languages (U.S. English and French): ["en-US", "Hello World"], ["fr", "Bonjour monde"]. The languages are listed in the same order as in the update descriptor.
versionThe string representing the new available version