AIRContextMenus <!-- The description displayed in the AIR application installer. --> <description></description> <!-- The application copyright information. --> <copyright></copyright> <!-- The settings for the initial application window. --> <initialWindow> <!-- The title displayed in the AIR application installer. --> <title/> <!-- The main content file of the application, which must be a SWF or HTML file. (Required.) Note: In Flex Builder, the SWF reference required within this tag will be set automatically when you launch or export this application. --> <content>!ApolloApplicationWizardPage.rootContentValue!</content> <!-- Specifies the type of system chrome used by the window. standard - the application window is opened with standard operating system window elements such as a title bar, minimize, and close buttons. none - the application must provide its own window controls. (Note, that the Flex mx:WindowedApplication class supplies its own window controls, shown only when systemChrome=none.) Default value: standard --> <systemChrome>standard</systemChrome> <!-- Specifies whether the window supports transparency and alpha blending against the desktop. If true, the window display is composited against the desktop. Areas of the window not covered by a display object, or covered by display objects with an alpha setting of zero, are effectively invisible and will not intercept mouse events (which will be received by the desktop object below the window). Setting transparent=true for a window with system chrome is not supported. Default value: false --> <transparent>false</transparent> <!-- Specifies whether the window will be visible on application startup. If false, the main window will not be displayed until the application changes the NativeWindow.visible property to true or calls NativeWindow.activate(). Note that the Flex Framework will set the initial window defined by mx:WindowedApplication to be visible immediately prior to the applicationComplete event unless the WindowedApplication.windowVisible property is false. Default value: false --> <visible>true</visible> <!-- Other settings for the initial window. --> <!-- <minimizable>true</minimizable> --> <!-- <maximizable>true</maximizable> --> <!-- <resizable>true</resizable> --> <!-- <width>500</width> --> <!-- <height>500</height> --> <!-- <x>150</x> --> <!-- <y>150</y> --> <!-- <minSize>300 300</minSize> --> <!-- <maxSize>800 800</maxSize> --> </initialWindow> <!-- The subdirectory within the default application installation location in which to install the application. Use forward slashes '/' to separate folders. The path cannot start with a forward slash; end with a dot '.'; and cannot contain the characters: *":<>?\| --> <!-- <installFolder></installFolder> --> <!-- The location within the Windows Programs menu in which to place application shortcuts. Ignored on Mac OS X. Use forward slashes '/' to separate folders. The path cannot start with a forward slash; end with a dot '.'; and cannot contain the characters: *":<>?\| --> <!-- <programMenuFolder>Example Company/Example Application</programMenuFolder> --> <!-- One or more PNG, GIF, or JPEG graphics files to be used as application icons. The path specified is relative to the application root directory. If an image is specified, it must be the exact size. The image files must be included in the AIR file. --> <icon> <!-- <image16x16>icons/AIRApp_16.png</image16x16> --> <!-- <image32x32>icons/AIRApp_32.png</image32x32> --> <!-- <image48x48>icons/AIRApp_48.png</image48x48> --> <!-- <image128x128>icons/AIRApp_128.png</image128x128> --> </icon> <!-- If the handleUpdates element is present in the application descriptor, then the AIR runtime will defer version updates to this application. --> <!-- <handleUpdates/> --> <!-- Defines the file types for which this application may register. Use the Shell object file registration methods at run-time to set an application as the default application for a file type. Icons are optional. If used, the path specified is relative to the application root directory. The icon files must be included in the AIR file. --> <fileTypes> <!-- <fileType> <name>com.example</name> <extension>xmpl</extension> <description>Example file</description> <contentType>example/x-data-type</contentType> <icon> <image16x16>icons/AIRApp_16.png</image16x16> <image32x32>icons/AIRApp_32.png</image32x32> <image48x48>icons/AIRApp_48.png</image48x48> <image128x128>icons/AIRApp_128.png</image128x128> </icon> </fileType> --> </fileTypes> </application>