-
Notifications
You must be signed in to change notification settings - Fork 14
/
AIR SDK Readme.txt
187 lines (97 loc) · 7.99 KB
/
AIR SDK Readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
Adobe AIR 3.1 SDK
README FILE
======What's included in the SDK======
The AIR SDK includes this Readme.txt file and the AIR SDK license.pdf file, which contains the
Warranty Disclaimer and License Agreement for the Adobe AIR SDK. The AIR SDK also includes
the following directories:
BIN
- adl (adl.exe on Windows) - The AIR Debug Launcher (ADL) allows you to test an AIR application without having to package and install it.
- adt (adt.bat on Windows) - The AIR Developer Tool (ADT) packages your application as an .air file for distribution.
FRAMEWORKS
- A libs directory that contains the following AIR frameworks:
- AIRAliases.js - Provides "alias" definitions that allow you to access the AIR runtime classes from Javascript.
- airglobal.swc - Provides the core AIR API used when compiling SWF content.
- AIRIntrospector.js - Assists in AIR application development, allowing you to inspect JavaScript properties, view the HTML DOM, and view source files at run time.
- AIRLocalizer.js - Assists in developing localized (multi-language) versions of in HTML-based AIR applications.
- AIRMenuBuilder.js - Assists in creating menus in HTML-based AIR applications.
- AIRSourceViewer.js - Lets users view source files in an AIR application.
- applicationupdater.swc - Provides Flex-based AIR applications with a framework for assisting in managing application updates.
- applicationupdater.swf - Provides HTML-based applications with a framework for assisting in managing application updates.
- applicationupdater_ui.swc - Provides Flex-based AIR applications with a framework for assisting in managing application updates. This version of the framework provides a default user interface.
- applicationupdater_ui.swf - Provides HTML-based applications with a framework for assisting in managing application updates. This version of the framework provides a default user interface.
- servicemonitor.swc - Provides Flex-based AIR applications with an event-based means of responding to changes in network connectivity to a specified host.
- servicemonitor.swf - Provides HTML-based AIR applications with an event-based means of responding to changes in network connectivity to a specified host.
- aircore.swc - Provides Flex-based AIR applications various additional API, including service monitoring.
- aircore.swf - Provides HTML-based AIR applications various additional API, including service monitoring.
- A PROJECTS directory, which includes source files for the AIR application update framework and for the service monitor framework.
LIB
- adt.jar - The ADT executable file, which is called by the adt file (or adt.bat on Windows).
RUNTIMES
- The AIR runtime - The runtime is used by ADL to launch your AIR applications before they have been packaged or installed.
SAMPLES
- descriptor-sample.xml - A sample application descriptor file.
- badge - A directory containing sample files for the AIR seamless install feature, which lets you distribute an AIR application directly from a web page.
- icons - A directory containing the default AIR application icons.
TEMPLATES/AIR
- Descriptor.1.1.xsd - An XML Schema Definition file for the AIR 1.1 application descriptor file.
- Descriptor.1.5.xsd - An XML Schema Definition file for the AIR 1.5 application descriptor file.
- Descriptor.1.5.1.xsd - An XML Schema Definition file for the AIR 1.5.1 application descriptor file.
- Descriptor.1.5.2.xsd - An XML Schema Definition file for the AIR 1.5.2 application descriptor file.
- Descriptor.1.5.3.xsd - An XML Schema Definition file for the AIR 1.5.3 application descriptor file.
- Descriptor.2.0.xsd - An XML Schema Definition file for the AIR 2.0 application descriptor file.
- Descriptor.2.5.xsd - An XML Schema Definition file for the AIR 2.5 application descriptor file.
- Descriptor.2.6.xsd - An XML Schema Definition file for the AIR 2.6 application descriptor file.
- Descriptor.2.7.xsd - An XML Schema Definition file for the AIR 2.7 application descriptor file.
- Descriptor.3.0.xsd - An XML Schema Definition file for the AIR 3.0 application descriptor file.
- Descriptor.3.1.xsd - An XML Schema Definition file for the AIR 3.1 application descriptor file.
- Descriptor.3.2.xsd - An XML Schema Definition file for the AIR 3.2 application descriptor file.
- descriptor-template.xml - A template of the application descriptor file, which is required for each AIR application.
TEMPLATES/EXTENSIONS
- Descriptor.2.5.xsd - An XML Schema Definition file for the AIR 2.5 extension descriptor file.
- Descriptor.3.1.xsd - An XML Schema Definition file for the AIR 3.1 extension descriptor file.
- extension-descriptor-template.xml - A template of the extension descriptor file, which is required for each AIR extension.
TEMPLATES/EXTENSIONS/iOS
- Descriptor.3.1.xsd - An XML Schema Definition file for the AIR 3.1 iOS platform descriptor file.
- platform-descriptor-template.xml - A template of the iOS platform descriptor file, for iOS platform specific options.
======iOS Target Support======
If you have downloaded a version of the AIR 2 SDK that supports packaging iOS targets, additional files will be included. The following files and folders in the AIR 2 SDK contain the tools that enable you to compile AIR applications into .ipa files for iOS devices.
LIB
- AOT - Directory containing the files necessary for the AOT (Ahead of Time) Compiler used by ADT
======Getting Started with the AIR SDK======
1) Build your source files using the editor of your choice. Arrange them as you would on a web server, in a single folder with relative references.
2) If you are using the AIR APIs in JavaScript, include a <script> reference to the AIRAliases.js file. AIR APIs are only available to your application content (not to content loaded from remote sources). Also, there are limitations on calling the eval() function and similar APIs in AIR application content. For details, see the AIR SDK documentation (listed below).
3) Use ADL to test your application with the debugger.
4) Use ADT to build an application installer that can be distributed to other people.
5) If you're distributing your AIR application from a web page, refer to the topic "Distributing and installing using the seamless install feature" in "Developing Adobe AIR Applications with HTML and Ajax".
More information about all of these steps is available in the "Developing Adobe AIR Applications with HTML and Ajax". See the next section for the locations of the AIR documentation.
If you want to build Flex-based AIR applications, download the Flex SDK: http://www.adobe.com/products/flex/sdk/
======AIR SDK Documentation======
The following Adobe AIR HTML developer documentation is available in the LiveDocs (online) format:
- Developing Adobe AIR Applications with HTML and Ajax -- http://www.adobe.com/go/learn_air_html
- Adobe AIR Quick Starts for HTML -- http://www.adobe.com/go/learn_air_html_qs
- Adobe AIR Language Reference for HTML Developers -- http://www.adobe.com/go/learn_air_html_jslr
===Downloading Adobe AIR HTML documentation===
The Adobe AIR HTML documentation set (a ZIP file) is available for download here:
http://www.adobe.com/go/learn_air_html_docs
===Adobe AIR SDK License in other languages===
The Adobe AIR SDK License is also available for review on the following Adobe web sites.
English:
http://www.adobe.com/products/eulas/
French:
http://www.adobe.com/fr/products/eulas/
German:
http://www.adobe.com/de/products/eulas/
Italian:
http://www.adobe.com/it/products/eulas/
Spanish:
http://www.adobe.com/es/products/eulas/
Brazilian Portuguese:
http://www.adobe.com/br/products/eulas/
Japanese:
http://www.adobe.com/jp/products/eulas/
Chinese:
http://www.adobe.com/cn/products/eulas/
Korean:
http://www.adobe.com/kr/products/eulas/
Russian:
http://www.adobe.com/ru/products/eulas/