root/as3/GeniusFramework/branches/tarotarorg/fd-template/ProjectTemplates/50 Genius Framework - AIR/application.xml.template

リビジョン 863, 4.8 kB (コミッタ: tarotarorg, コミット時期: 4 年 前)

GeniusFramework?1.3ベース:
FlashDevelp?用のテンプレートを、Flex用とAIR用の2種類準備。

Line 
1 <?xml version="1.0" encoding="utf-8" ?>
2 <application
3     xmlns="http://ns.adobe.com/air/application/1.0">
4 <!-- Adobe AIR Application Descriptor File Template.
5
6         Specifies parameters for identifying, installing, and launching AIR applications.
7         See http://www.adobe.com/go/air_1.0_application_descriptor for complete documentation.
8
9         xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/1.0
10                         The last segment of the namespace specifies the version
11                         of the AIR runtime required for this application to run.
12                        
13         minimumPatchLevel - The minimum patch level of the AIR runtime required to run
14                         the application. Optional.
15 -->
16
17         <!-- The application identifier string, unique to this application. Required. -->
18         <id>$(PackageName).$(ProjectName)</id>
19        
20         <!-- Used as the filename for the application. Required. -->
21         <filename>$(ProjectName)</filename>
22
23         <!-- The name that is displayed in the AIR application installer. Optional. -->
24         <name>$(ProjectName)</name>
25
26         <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
27         <version>Alpha 1</version>
28
29         <!-- Description, displayed in the AIR application installer. Optional. -->
30         <!-- <description></description> -->
31
32         <!-- Copyright information. Optional -->
33         <!-- <copyright></copyright> -->
34
35         <!-- Settings for the application's initial window. Required. -->
36         <initialWindow>
37                 <!-- The main SWF or HTML file of the application. Required. -->
38                 <content>$(ProjectName).swf</content>
39                 <!-- The title of the main window. Optional. -->
40                 <!-- <title></title> -->
41
42                 <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
43                 <!-- <systemChrome></systemChrome> -->
44
45                 <!-- Whether the window is transparent. Only applicable when systemChrome is false. Optional. Default false. -->
46                 <!-- <transparent></transparent> -->
47
48                 <!-- Whether the window is initially visible. Optional. Default false. -->
49                 <!-- <visible></visible> -->
50
51                 <!-- Whether the user can minimize the window. Optional. Default true. -->
52                 <!-- <minimizable></minimizable> -->
53
54                 <!-- Whether the user can maximize the window. Optional. Default true. -->
55                 <!-- <maximizable></maximizable> -->
56
57                 <!-- Whether the user can resize the window. Optional. Default true. -->
58                 <!-- <resizable></resizable> -->
59
60                 <!-- The window's initial width. Optional. -->
61                 <!-- <width></width> -->
62
63                 <!-- The window's initial height. Optional. -->
64                 <!-- <height></height> -->
65
66                 <!-- The window's initial x position. Optional. -->
67                 <!-- <x></x> -->
68
69                 <!-- The window's initial y position. Optional. -->
70                 <!-- <y></y> -->
71
72                 <!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
73                 <!-- <minSize></minSize> -->
74
75                 <!-- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
76                 <!-- <maxSize></maxSize> -->
77         </initialWindow>
78
79         <!-- The subpath of the standard default installation location to use. Optional. -->
80         <!-- <installFolder></installFolder> -->
81
82         <!-- The subpath of the Windows Start/Programs menu to use. Optional. -->
83         <!-- <programMenuFolder></programMenuFolder> -->
84
85         <!-- The icon the system uses for the application. For at least one resolution,
86                  specify the path to a PNG file included in the AIR package. Optional. -->
87         <!-- <icon>
88                 <image16x16></image16x16>
89                 <image32x32></image32x32>
90                 <image48x48></image48x48>
91                 <image128x128></image128x128>
92         </icon> -->
93
94         <!-- Whether the application handles the update when a user double-clicks an update version
95         of the AIR file (true), or the default AIR application installer handles the update (false).
96         Optional. Default false. -->
97         <!-- <customUpdateUI></customUpdateUI> -->
98        
99         <!-- Whether the application can be launched when the user clicks a link in a web browser.
100         Optional. Default false. -->
101         <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
102
103         <!-- Listing of file types for which the application can register. Optional. -->
104         <!-- <fileTypes> -->
105
106                 <!-- Defines one file type. Optional. -->
107                 <!-- <fileType> -->
108
109                         <!-- The name that the system displays for the registered file type. Required. -->
110                         <!-- <name></name> -->
111
112                         <!-- The extension to register. Required. -->
113                         <!-- <extension></extension> -->
114                        
115                         <!-- The description of the file type. Optional. -->
116                         <!-- <description></description> -->
117                        
118                         <!-- The MIME type. Optional. -->
119                         <!-- <contentType></contentType> -->
120                        
121                         <!-- The icon to display for the file type. Optional. -->
122                         <!-- <icon>
123                                 <image16x16></image16x16>
124                                 <image32x32></image32x32>
125                                 <image48x48></image48x48>
126                                 <image128x128></image128x128>
127                         </icon> -->
128                        
129                 <!-- </fileType> -->
130         <!-- </fileTypes> -->
131
132 </application>
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。