| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<application xmlns="http://ns.adobe.com/air/application/1.0.M4" appId="org.libspark.as3unit" version="1.2"> |
|---|
| 3 |
|
|---|
| 4 |
<!-- |
|---|
| 5 |
AIR Application Descriptor File: |
|---|
| 6 |
Specifies parameters for identifying, installing, and launching AIR applications. |
|---|
| 7 |
|
|---|
| 8 |
The root element of the descriptor is "application" and has the attributes: |
|---|
| 9 |
appID - A string identifying this application. Every AIR application must |
|---|
| 10 |
have a unique appID. The recommended form of an appID is a |
|---|
| 11 |
dot-delimited, reverse-DNS-style string, such as |
|---|
| 12 |
"com.example.ApplicationName". The appID string must be between |
|---|
| 13 |
17-255 characters long and may include the following characters: |
|---|
| 14 |
0-9 |
|---|
| 15 |
a-z |
|---|
| 16 |
A-Z |
|---|
| 17 |
. (dot) |
|---|
| 18 |
- (hyphen) |
|---|
| 19 |
version - An application-defined version designator. |
|---|
| 20 |
Examples: "1.0", ".4", "0.5", "Alpha 1", |
|---|
| 21 |
xmlns - The AIR namespace ("http://ns.adobe.com/air/application/1.0.M4"). |
|---|
| 22 |
--> |
|---|
| 23 |
|
|---|
| 24 |
<!-- |
|---|
| 25 |
The name displayed by the operating system when the application is |
|---|
| 26 |
running. (Required.) |
|---|
| 27 |
--> |
|---|
| 28 |
<name>AS3UnitGUI</name> |
|---|
| 29 |
|
|---|
| 30 |
<!-- |
|---|
| 31 |
The title displayed in the AIR application installer. |
|---|
| 32 |
--> |
|---|
| 33 |
<title/> |
|---|
| 34 |
|
|---|
| 35 |
<!-- |
|---|
| 36 |
The description displayed in the AIR application installer. |
|---|
| 37 |
--> |
|---|
| 38 |
<description></description> |
|---|
| 39 |
|
|---|
| 40 |
<!-- |
|---|
| 41 |
The application copyright information. |
|---|
| 42 |
--> |
|---|
| 43 |
<copyright>(C) 2006-2007 Spark project</copyright> |
|---|
| 44 |
|
|---|
| 45 |
<!-- |
|---|
| 46 |
The main content file of the application, which must be a SWF or |
|---|
| 47 |
HTML file. (Required.) |
|---|
| 48 |
|
|---|
| 49 |
Attributes: |
|---|
| 50 |
systemChrome - "standard" or "none". If "standard", the application |
|---|
| 51 |
window is opened with operating system-specific window |
|---|
| 52 |
elements such as a title bar, minimize, and close |
|---|
| 53 |
buttons. If "none", the application must provide its |
|---|
| 54 |
own window controls. (Note, the Flex WindowedApplication |
|---|
| 55 |
class supplies a set of window controls, which are only |
|---|
| 56 |
shown when systemChrome="none".) |
|---|
| 57 |
transparent - "true" or "false". If "true", the application has support |
|---|
| 58 |
for full transparency. |
|---|
| 59 |
visible - "true" or "false". If "false", the main window will not |
|---|
| 60 |
be displayed |
|---|
| 61 |
until the application changes the window visible property |
|---|
| 62 |
to "true". |
|---|
| 63 |
width - the initial window height (including chrome). |
|---|
| 64 |
height - the initial window width (including chrome). |
|---|
| 65 |
|
|---|
| 66 |
In Flex Builder, the SWF reference required within this tag will be set |
|---|
| 67 |
automatically when you launch or export this application. |
|---|
| 68 |
--> |
|---|
| 69 |
<rootContent systemChrome="none" transparent="true" visible="true">[SWF reference is generated]</rootContent> |
|---|
| 70 |
|
|---|
| 71 |
<!-- |
|---|
| 72 |
The subdirectory within the default application installation location in |
|---|
| 73 |
which to install the application. |
|---|
| 74 |
--> |
|---|
| 75 |
<!-- <installFolder></installFolder> --> |
|---|
| 76 |
|
|---|
| 77 |
<!-- |
|---|
| 78 |
One or more PNG, GIF, or JPEG graphics files to be used as application |
|---|
| 79 |
icons. The path specified is relative to the application root directory. |
|---|
| 80 |
If an image is specified, it must be the exact size. The image files |
|---|
| 81 |
must be included in the AIR package. |
|---|
| 82 |
--> |
|---|
| 83 |
|
|---|
| 84 |
<!-- |
|---|
| 85 |
<icon> |
|---|
| 86 |
<image16x16>icons/AIRApp_16.png</image16x16> |
|---|
| 87 |
<image32x32>icons/AIRApp_32.png</image32x32> |
|---|
| 88 |
<image48x48>icons/AIRApp_48.png</image48x48> |
|---|
| 89 |
<image128x128>icons/AIRApp_128.png</image128x128> |
|---|
| 90 |
</icon> |
|---|
| 91 |
--> |
|---|
| 92 |
|
|---|
| 93 |
<!-- |
|---|
| 94 |
If the handleUpdates element is present in the application descriptor, |
|---|
| 95 |
then the AIR runtime will defer version updates to this application. |
|---|
| 96 |
--> |
|---|
| 97 |
<!-- <handleUpdates/> --> |
|---|
| 98 |
|
|---|
| 99 |
<!-- |
|---|
| 100 |
One or more file types to register when this application is installed. |
|---|
| 101 |
--> |
|---|
| 102 |
|
|---|
| 103 |
<!-- |
|---|
| 104 |
<fileTypes> |
|---|
| 105 |
<fileType> |
|---|
| 106 |
<name>com.example</name> |
|---|
| 107 |
<extension>xmpl</extension> |
|---|
| 108 |
<description>Example file</description> |
|---|
| 109 |
<contentType>example/x-data-type</contentType> |
|---|
| 110 |
</fileType> |
|---|
| 111 |
</fileTypes> |
|---|
| 112 |
--> |
|---|
| 113 |
|
|---|
| 114 |
</application> |
|---|