| Package | potomac.core |
| Class | public class LauncherManifest |
| Inheritance | LauncherManifest Object |
| Property | Defined By | ||
|---|---|---|---|
| airBundlesURL : String
The URL to pull bundles from when running in AIR. | LauncherManifest | ||
| bundles : Array
The initial bundles of the application. | LauncherManifest | ||
| disableAIRCaching : Boolean = false
Defaults to false. | LauncherManifest | ||
| enablesForFlags : Array
Collection of flags for use with the 'enablesFor' extension attribute. | LauncherManifest | ||
| preloads : Array
The id's of bundles that should be preloaded. | LauncherManifest | ||
| runner : LaunchRunner
The runner which provides the main application starting logic after the bootstrapping
is complete. | LauncherManifest | ||
| airBundlesURL | property |
public var airBundlesURL:StringThe URL to pull bundles from when running in AIR.
| bundles | property |
public var bundles:ArrayThe initial bundles of the application. Each element in the array should be a string containing the id of the bundle. Bootstrapping assumes all bundles are located in a directory named 'bundles' located within the application SWF's directory.
| disableAIRCaching | property |
public var disableAIRCaching:Boolean = falseDefaults to false. If true, bundles will never be cached locally when running in AIR.
| enablesForFlags | property |
public var enablesForFlags:ArrayCollection of flags for use with the 'enablesFor' extension attribute. Typically used for unit testing.
| preloads | property |
public var preloads:ArrayThe id's of bundles that should be preloaded. This array should be a subset of the id's specified in 'bundles'.
| runner | property |
public var runner:LaunchRunnerThe runner which provides the main application starting logic after the bootstrapping is complete. Normal execution uses the TemplateRunner which creates the template specified in the appManifest.xml and loads all specified parts and pages.