Cover | Table of Contents
Internet applications are all about reach. The promise of the web is one of content and applications anywhere, regardless of the platform or device. Rich clients must embrace and support all popular desktop operating systems, as well as the broadest range of emerging device platforms such as smart phones, PDAs, set-top boxes, game consoles, and Internet appliances.
Internet applications are all about reach. The promise of the web is one of content and applications anywhere, regardless of the platform or device. Rich clients must embrace and support all popular desktop operating systems, as well as the broadest range of emerging device platforms such as smart phones, PDAs, set-top boxes, game consoles, and Internet appliances.
Version | Uninstall? |
|---|---|
Alpha | Uninstall |
Beta 1 | Will be uninstalled
automatically by the Adobe AIR 1.0 installer |
Beta 2 | No need to
uninstall |
Beta 3 | No need to
uninstall |
<?xml version="1.0" encoding="utf-8" ?>
<application xmlns="http://ns.adobe.com/air/application/1.0">
<id>com.oreilly.AIRHelloWorld</id>
<filename>AIRHelloWorld</filename>
<name>AIR Hello World</name>
<description>A simple AIR hello world application</
description> <version>1.0</version>
<initialWindow>
<content>AIRHelloWorld.html</content>
<title>AIR Hello World</title>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<minimizable>true</minimizable>
<maximizable>true</maximizable>
<resizable>true</resizable>
</initialWindow>
</application>
adl AIRHelloWorld.xml
window.runtime
property. This will be discussed in more detail later.Scheme | Description | Example |
|---|---|---|
http:// | URI that points to a
resource accessed via the standard HTTP
protocol. | |
https:// | URI that points to a
resource accessed via a protocol encrypted with
SSL/TLS. | |
file:// | URI that points to a
resource on the local or a networked file
system. | file:///c:/Test/test.txt |
mailto: | URI that opens the
default email application. | mailto:john.doe@example.com |
feed:// and data:// URI schemes are not supported by Adobe AIR 1.0, and there is only
partial support for the ftp://
scheme.javascript: URI
scheme is not supported within applications running within the
Adobe AIR application sandbox. Please check the Security model section later is this
chapter for more details.app:/ URI scheme.
All files within the application directory tree are assigned to the
application sandbox when the application is run.Adobe AIR runtime security violation
for JavaScript code in the application security
sandbox.”The application attempted to reference a JavaScript
object in an HTML page that is no longer loaded.”// In this example the event listener for an uncaughtScript
Exception event is removed when unload event fires
window.onunload = cleanup;
window.htmlLoader.addEventListener('uncaughtScriptException',
uncaughtScriptException);
function cleanup()
{
window.htmlLoader.removeEventListener('uncaught
ScriptException',
uncaughtScriptExceptionHandler);
}