<?xml version="1.0" encoding="utf-8" ?>
<!--  -->

<application  xmlns="http://ns.adobe.com/air/application/1.0">

	<id>HelloWorld</id>
	<filename>HelloWorld</filename>
    
    <name>HelloWorld-Application</name>
    <version>1.0</version>
    
    <title>HelloWorld-Application</title>
    <description>Shows "Hello World"</description>
    
    <copyright>
    	<!-- Copyright information for the AIR application. (Optional) -->
    </copyright>
    
    <installFolder>TroyWorks/HelloWorld</installFolder>
    
    <programMenuFolder>TroyWorks/HelloWorld</programMenuFolder>
     <!-- The window into which the root content file will be loaded. -->
    <initialWindow>
    
        <title>HelloWorld</title>
        
        <content>HelloWorld.swf</content>
        
        <systemChrome>
        	<!-- 
				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>
        
        <transparent>
        	<!-- 
				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>
        
        <visible>true</visible>
        
        <!-- 
        	If not set, window size is determined by settings in the root SWF file 
			or by the operating system (Html). 
		-->
             
        <width>
        	<!-- (Optional) -->
        </width>
        
        <height>
        	<!-- (Optional) -->
        </height>
        
        <!-- 
        	If not set, minSize and maxSize are determined by the operating system.
        -->
        
        <minSize>
        	<!-- width heigth (Optional) -->
        </minSize>
        
        <maxSize>
        	<!-- width heigth (Optional) -->
        </maxSize>
        
        <minimizable>
        	<!-- True or false -->
        </minimizable>
        
        <maximizable>
        	<!-- True or false -->
        </maximizable>
        
        <resizable>
        	<!-- True or false -->
        </resizable>
        
    </initialWindow> 
    
    
    <!-- 
		If you do not specify an icon property, the operating system will display a default icon.
    	The path specified is relative to the application root directory. PNG, GIF, and JPEG are supported.  
		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>adobe.VideoFile</name>
	            <extension>avf</extension>
	            <description>Adobe Video File (Optional)</description>
	            <contentType>application/vnd.adobe.video-file (Optional)</contentType>
	        </fileType>
	    </fileTypes>
	-->
    
</application>
