Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What exactly is Adobe Air? I've seen a lot of people talking about it and I've even seen applications for it but I'm still not entirely sure what makes it unique or how it is different from other languages. Can someone please give me the concise version from a programmer's point of view?

Edit: I wasn't familiar with Flex so I found this nice explanation: http://www.onflex.org/ted/2008/01/what-is-flex.php

share|improve this question

3 Answers

up vote 10 down vote accepted

In a nutshell.

Start with the assumption that you know what Flex and Actionscript are. Then take the fact that they both run exclusively in your browser and to all intents and purposes are for building web apps.

Now assume you want to develop the same app, with the same language and user interface resources, but run it as a desktop app on a workstion (PC, Mac, or Linux interchangeably).

AIR is what you add (as a link library) to Flex and Actionscript to accomplish that.

share|improve this answer
Additionally the AIR runtime includes the Webkit HMTL rendering engine (Webkit is also used by Apple Safari and Google Chrome browsers), and can interpret JavaScript. (In contrast, Flex ActionScript3 must be compiled into .swf files before can be executed in the Flash or AIR runtimes.) – RogerV Jan 24 '09 at 7:17
Also important to note that AIR applications can be built with HTML and Javascript... although I've only ever built them with Flex and ActionScript. – cliff.meyers Jan 24 '09 at 21:52
Alas, one of the deficiencies of AIR is inability to launch other processes. Java, in contrast, has Runtime.exec() and Process class for doing that. This is the most frequently cited lack of feature for Adobe to address regarding AIR. – RogerV Jan 25 '09 at 17:43
@RogerV - agreed - I've had to deal with the no-exec() issue too. – le dorfier Jan 26 '09 at 2:32

http://en.wikipedia.org/wiki/Adobe_Integrated_Runtime Write cross-platform desktop apps in Flash, Flex, HTML, Ajax.

share|improve this answer

It's basically flex for the desktop afaik

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.