Newer
Older
AIR-TUve / src / TUve-app.xml
@reddawg reddawg on 5 Dec 2007 7 KB *** empty log message ***
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/1.0.M5" appId="TUve" version="1.0 Beta">
<!-- 
    AIR Application Descriptor File: 
    Specifies parameters for identifying, installing, and launching AIR applications.

    The root element of the descriptor, "application" has these attributes:
    appID             - A string identifying this application. Every AIR 
                        application must have a unique appID. The recommended 
                        form of an appID is a dot-delimited, reverse-DNS-style 
                        string, such as: "com.example.ApplicationName"
                        The appID string must be between 17-255 characters long
                        and may include the following characters:
                        0-9 
                        a-z 
                        A-Z 
                        . (dot)
                        - (hyphen)              
    version           - An application version designator.
                        Examples: "1.0", ".4", "0.5", "Alpha 1"
    minimumPatchLevel - the minimum patch level of the runtime version that this 
                        application requires. Example: 45
    xmlns             - The AIR namespace: http://ns.adobe.com/air/application/1.0.M5 
                        The last segment of the namespace specifies the version 
                        of the runtime required for this application to run.
-->
    
  <!--
      The application name displayed by the operating system. (Required.)
  -->
  <name>TUve</name>

  <!--
      The title displayed in the AIR application installer.
  -->
  <title/>

  <!--
      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>