vote up 1 vote down star

I am a little confused. I keep seeing articles of how Adobe AIR can let you download apps that run on the desktop. Don't we have this already? How is this different from any WinForms or WPF application? Just the fact that you can download it from the web? Am I missing something?

flag

6 Answers

vote up 5 vote down check

Adobe have taken the run-anyware idea of web browser and web-server and created a desktop application framework. This means you can build a "website" that runs without a server.

There are a few nice things with this approach. The main one is that it makes it possible to do things locally that a website cannot do, like read and write files, or create native windows. And because the "browser" it runs in is a known quantity, you can take advantage of that with WebKit-specific extensions. Or you can just build it in Flash. Or combine the two as you need.

Adobe have also leveraged the cross-platform quality: both key pieces of AIR (Flash and WebKit) are already available on Windows, MacOS and Linux, so it was not that much of a stretch to make the whole of AIR cross-platform. This gives a really neat effect: the same .air file should install on any AIR install. And will run the same.

link|flag
but isnt the whole value of the web that you dont have to download apps ?? – oo Jun 9 at 12:09
1  
Sometimes, the best solution is a downloaded app. AIR means you can create a downloadable app using the same methodology you would use to create a website. – staticsan Jun 10 at 1:37
1  
And sometimes you want to make a downloaded app that shares logic/contents with your web site. And sometimes you want to make a downloaded app, but your programmers are web programmers and not native app programmers. – fenomas Jun 21 at 8:52
im still lost here. clearly you can build more robust tools with desktop code than web code so it still seems like you are making life harder by building desktop apps using web capabilities – oo Jun 23 at 11:03
No, it isn't clear at all. AIR is an environment for building desktop apps with JavaScript, HTML, CSS and Flash. This is not actually any different in concept from building an application in .NET with WPF using C#. – staticsan Jun 23 at 23:41
vote up 3 vote down

You can build desktop applications with languages more commonly associated with web development. In other words, you can build a desktop application using HTML/CSS and JavaScript, or Adobe's Flash technology (more commonly used). That's what makes it different. It also has some really nice built-in features such as auto-update and an embedded SQLite database for storage, and installation is taken care of for you.

link|flag
vote up 1 vote down

I would say adobe air is Adobe's answer to click once deployment. Also included, this give a way for flash designers to extened there web applications as desktop applications such as twhril for twitter. Microsoft's answer back will be the Silverlight 3 which should be availible next month.

To me I don't think there is much differnce beside letting a web developer run their applications on the desktop vs a desktop developer trying to customize there app for the web. All in all I say its just another flavor of a thin client.

link|flag
vote up -1 vote down

Adobe Air competes in the space currently known as "Rich Internet Applications" (RIA). The concept here is to make web applications that have user interface elements that are more powerful than what is available in a browser. Competing in the space of RIA are:

  • Adobe Air / Flash
  • Microsoft Silverlight
  • JavaFX
  • HTML/CSS/Javascript (as seen from Google's web applications)

The point is to deliver desktop applications that combine features of web applications, such as:

  • one-click deployment / always running the most up-to-date code
  • a rich set of programmer libraries / APIs compared to what's available in the DOM
  • ability to deliver media content outside of what's available in HTML
link|flag
air supports three types: html/css/js, flash, flex – Karsten Jun 9 at 6:12
Flex is the name of the IDE, not a "type" – Jage Jul 31 at 18:48
vote up 0 vote down

In addition to the points provided above, AIR applications are can run on MacOSX, Windows and Linux. The one-click deployment, deploys not only the application, but if necessary, the run-time and the run-time is a small download.

link|flag
vote up 1 vote down

Sure, you can do things in WPF - if you're a .NET programmer. You can likewise do things in Java if you're a Java programmer. If you're a Flash/HTML/JS/web programmer, you can use AIR. Other than that, you're not missing anything.

link|flag

Your Answer

Get an OpenID
or

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