IDE untuk pengembangan FLEX dan AIR

Berikut IDE untuk pengembangan FLEX dan AIR :

Framework MVC di Flex dan AIR

 

  • Cairngorm (Adobe Open Source)
  • Cairngorm is the lightweight micro-architecture for Rich Internet Applications built in Flex or AIR. A collaboration of recognized design patterns, Cairngorm exemplifies and encourages best-practices for RIA development advocated by Adobe Consulting, encourages best-practice leverage of the underlying Flex framework, while making it easier for medium to large teams of software engineers deliver medium to large scale, mission-critical Rich Internet Applications.

    Cairngorm is now evolving towards a project that will invite community leaders and enterprise adopters to partner with Adobe Consulting in the ongoing development of Cairngorm.

  • PureMVC (Open Source),
  • puremvc-icon

    PureMVC is a lightweight framework for creating applications based upon the classic Model, View and Controller concept.

    Based upon proven design patterns, this free, open source framework which was originally implemented in the ActionScript 3 language for use with Adobe Flex, Flash and AIR, is now being ported to all major development platforms.

    Two versions of the framework are supported with reference implementations; Standard and MultiCore

    In short, the Standard Version provides a simple methodology for separating your coding interests according to the MVC concept. Beyond that, the MultiCore Version allows multiple PureMVC applications to run within the same virtual machine; modular programming.

    Though the two versions are very similar they are maintained separately, because for applications that don't need modular functionality (or on development platforms that lack support for it), the Standard Version is adequate.

  • Mate (Open Source)
  • Mate is a tag-based, event-driven Flex framework.

    Flex applications are event-driven. Mate framework has been created to make it easy to handle the events your Flex application creates. Mate allows you to define who is handling those events, whether data needs to be retrieved from the server, or other events need to be triggered.

    In addition, Mate provides a mechanism for dependency injection to make it easy for the different parts of your application to get the data and objects they need.

  • Swiz (Open Source)

    Swiz is a framework for Adobe Flex that aims to bring complete simplicity to RIA development. Swiz provides Inversion of Control, event handing, and simple life cycle for asynchronous remote methods. In contrast to other major frameworks for Flex, Swiz imposes no JEE patterns on your code, no repetitive folder layouts, and no boilerplate code on your development. Swiz represents best practices learned from the top RIA developers at some of the best consulting firms in the industry, enabling Swiz to be simple, lightweight, and extremely productive.

  • Spring ActionScript (Open Source)
  • Note: The Spring ActionScript framework was formerly known as the Prana framework and has now been moved under the Spring umbrella as a Spring Extensions project.

    Spring ActionScript is an Inversion of Control (IoC) Container for ActionScript 3.0, and more specifically the Flex framework. It enables you to configure objects and components in a non-intrusive way by describing them in an external xml document and having them loaded at runtime.

    At its core is a Spring-ish application context and IoC container. The xml dialect for the application context is aimed to be Spring compliant.

    Further, the framework also contains utility classes for configuring and extending Cairngorm and PureMVC applications, an MVCS base architecture and general utilities. In the future we’ll be looking into adding AOP support, and we’re always open for suggestions.

Setelah membuat project AIR dengan menggunakan FlexBuilder bisanya ada beberapa File dan Folder yang terbentuk misalnya terlihat pada gambar berikut:

projectAIR

ada file newProjectAIR.MXML dan newProjectAIR-app.XML, newProjectAIR.MXML  adalah suatu aplikasi utama dan newProjectAIR-app.XML adalah propertie dari aplikasi utama. Properties tersebut isi terbagi menjadi Basic settings, Installation settings, dan Window settings

berikut isi dari  newProjectAIR-app.XML

<?xml version=”1.0” encoding=”UTF-8”?>
<application xmlns=”http://ns.adobe.com/air/application/1.0”>
<id>org.airbible.project</id>
<filename>newProjectAIR</filename>
<name>newProjectAIR</name>
<version>v1</version>
<initialWindow>
<content></content>
</initialWindow>
<!-- <installFolder></installFolder> -->
<!-- <programMenuFolder></programMenuFolder> -->
<!-- <icon>
<image16x16></image16x16>
<image32x32></image32x32>
<image48x48></image48x48>
<image128x128></image128x128>
</icon> -->
<!-- <customUpdateUI></customUpdateUI> -->
<!-- <allowBrowserInvocation></allowBrowserInvocation> -->
<!-- <fileTypes> -->
<!-- <fileType> -->
<!-- <name></name> -->
<!-- <extension></extension> -->
<!-- <description></description> -->
<!-- <contentType></contentType> -->
<!-- The icon to display for the file type. Optional. -->
<!-- <icon>
<image16x16></image16x16>
<image32x32></image32x32>
<image48x48></image48x48>
<image128x128></image128x128>
</icon> -->
<!-- </fileType> -->
<!-- </fileTypes> -->
</application>

Penjelasan:

Basic settings berisi

<id></id>
<filename></filename>
<name></name>
<version></version>
<description></description>
<copyright></copyright>

id, ini akan digunakan untuk mengenali aplikasi dan id ini digunakan oleh kelas LocalConnection saat memverifikasi asal aplikasi dan saat update aplikasi

filename, digunakan sebagai nama file aplikasi ketika di install, nama file bisa berisi sembarang unicode (UTF-8) kecuali karakter *, “, :, >, <, ?, \, dan |

Version, ini didefinisikan oleh publisher, version ini digunakan untuk identifikasi versi aplikasi

Description, deskripsi ini akan tampil di installer saat kita menginstal aplikasi

Name, nama boleh diisi dan juga tidak tetapi dianjurkan untuk mengisinya karena ini akan muncul di title bar saat kita menginstal aplikasi. ini juga digunakan sebagai nama folder saat installasi

Copyright, informasi copyright akan muncul di OS X didalam about dialog Box

Installation settings berisi

<installFolder></installFolder>
<programMenuFolder></programMenuFolder>

 

Install folder, berisi path dari folder installasi.Tetapi pada umumnya jika ini tidak diisi maka dia akan secara default berada pada program file.

Program menu folder, hanya bisa digunakan di windows saja.

Window settings berisi:

<initialWindow>
<content></content>
<title></title>
<systemChrome></systemChrome>
<transparent></transparent>
<visible></visible>
<minimizable></minimizable>
<maximizable></maximizable>
<resizable></resizable>
<width></width>
<height></height>
<x></x>
<y></y>
<minSize></minSize>
<maxSize></maxSize>
</initialWindow>

Content dan title, content berisi deskripsi file dan title akan tampil di title window saat pertama kali muncul

System chrome, ini adalah settingan untuk bingkai pada jendela windows ada 2 value untuk ini yaitu "standard" atau"none", jika pilih none maka bingkai pada jendela windows akan hilang

transparent, ini akan berfungsi jika System chrome di set none, valuenya hanya true atau false

visible, valuenya hanya true atau false

minimizable, valuenya hanya true atau false

Adobe AIR 1.5.1 telah di Rilis

air_icon_special

Pada tanggal 24 Februari adobe merilis Adobe AIR ver 1.5.1 versi ini sudah  includes new API`s; InvokeEvent, Capabilities.cpuArchitecture. Along with an updated Adobe  Flash player (version 10.0.22).

Release Note AIR | Download AIR 1.5.1

Mendebug code di Flex dan AIR, Tool tambahan Debug

untuk mendebug suatu aplikasi di Flex dan AIR kita bisa menggunakan cara

menggunakan fungsi trace, fungsi ini sangat simple digunakan kita cukup mengetik trace("text"), trace(variabel) contoh :

trace("Hello World!"); // menghasilkan: "Hello World!"
var myObj:Object= {item:"item 1", desc:'This is item 1'};
trace(myObj); // menghasilkan: [object Object]

Menggunakan perpective Debug pada FlexBuilder, cara ini adalah menggunakan fasilitas FlexBuilder untuk mendebug dengan memberikan breakpoint pada baris kode. dan debuger pada aplikasi akan membaca code satu persatu sesuai dengan urutan code-nya jika pada baris ada sebuah breakpoint maka dia akan berhenti pada titik tersebut dan memperlihatkan kondisi variable pada baris tersebut.

contoh sederhana menggunakan breakpoint pada debug,

1. Buat project flex dengan nama latihanDebug kemudian file latihanDebug.MXML diisi code berikut:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute" creationComplete="init()">
    <mx:Script>
        <![CDATA[
            private function init():void{
            var x:int=1;
            var y:int=2;
            var z:int=0;
            z=x+y;
            trace(z);
            }
        ]]>
    </mx:Script>
</mx:Application>

2. save dan kemudian, buat masuk ke mode Flex Debugging, kemudian buat breakpoint pada line dengan mengklik dua kali pada nomor baris baris, misal seperti ini:

breakpoint

kemudian jalankan debug dengan mengklik icon debug ato tekan tombol F11, dan akan menghasilkan seperti ini

debug01

untuk melanjutkan debug bisa mengklik tombol resume

 tombol

gambar tombol resume

Bila debug terus dilanjutkan sampai posisi breakpoint terakhir maka hasil dari z adalah 3;

Selain menggunakan fungsi trace perpective Debug kita bisa juga Menggunakan tool Debug tambahan, ada beberapa tool Debug tambahan yang bisa dipakai untuk men-debug code di Flex dan AIR. ada pun aplikasi tersebut adalah :

cara menggunakan De Monster Debugger

  1. Download aplikasi dari webnya dari web demonsterdebugger
  2. Instal di PC kita
  3. buat project di Flex atau AIR
  4. Export Class ke File Project kitaimage
  5.  

  6. import library nl.demonsters.debugger.MonsterDebugger dan kemudian gunakan MonsterDebugger.trace(parameter, "text") kedalam code, misalnya :
  7. <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute" initialize="init()">
        <mx:Script>
            <![CDATA[
            // Import the debugger
            import nl.demonsters.debugger.MonsterDebugger;
            // Variable to hold the debugger
            private var debugger:MonsterDebugger;
            private function onInit():void
            {
                // Init the debugger
                debugger = new MonsterDebugger(this);
                // Send a simple trace
                MonsterDebugger.trace(this, "Hello World!");
            }
            ]]>
        </mx:Script>
    </mx:Application>
  8. Kemudian Run atau jalankan aplikasi, maka akan terlihat seperti iniimage

Menghubungkan 2 Aplikasi AIR,Tapi Kok Error #2044

coba-coba menggunakan fungsi LocalConnection untuk menghubungkan 2 aplikasi AIR,tetapi setelah di coba kok error....

Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.LocalConnection was unable to invoke callback TampilData. error=ReferenceError: Error #1069: Property TampilData not found on reicever and there is no default value.

coba lihat code di bawah :

 

Aplikasi Air 1 sebagi sender;

<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
        <![CDATA[
            private var kirimConn:LocalConnection=new LocalConnection();
             private function kirimData():void
             {
             var namaLengkap:String=nama.text;
            kirimConn.send("_myConnection", "TampilData",namaLengkap)
            }
        ]]>
    </mx:Script>
    <mx:Form x="0" y="0" width="341" height="174">
        <mx:FormItem label="Nama lengkap">
            <mx:TextInput id="nama"/>
        </mx:FormItem>
        <mx:Button label="Kirim Data" click="kirimData()"/>

    </mx:Form>
</mx:WindowedApplication>

 

Aplikasi Air 2 sebagi receiver:

<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute" applicationComplete="init();">
    <mx:Script>
        <![CDATA[
            private var terimaConn:LocalConnection=new LocalConnection();
            private function init():void{
            terimaConn.client=this;
            terimaConn.allowDomain("*");
            terimaConn.connect("_myConnection");

            }
            private function TampilData(s:String):void{
            nama.text=s;
            }
        ]]>
    </mx:Script>
    <mx:TextArea x="167" y="88" width="221" height="131" id="nama"/>
</mx:WindowedApplication>

 

Ada yang tahu kenapa???

 

Bacaan Lainnya yang berhubungan dengan AIR Connection

  1. http://blog.everythingflex.com/2008/01/11/more-fun-with-air-localconnection-source-included/
  2. http://www.lonhosford.com/lonblog/2008/03/13/flex-liveconnection-and-legacy-flash-swfs/
  3. http://blog.kazumakzak.com/2008/11/26/flex-actionscript-project-sandbox-error-error-2044/

Di AIR terdapat Fasilitas untuk membuat window dengan nama Native window, umumnya aplikasi yang menggunakan native window mudah dalam hal release memory daripada menggunakan single window.kita mulai saja membuat Native window di AIR

 

1. buat project di AIR namakan dengan ProjectNativeWindows

2. ProjectNativeWindows.MXML isi dengan kode berikut:

<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
    <![CDATA[
        import windows.MyNativeWindow
         private var win:MyNativeWindow;
         private function openWindow():void{
          win=new MyNativeWindow();
          win.open();
         }
         private function CloseWindow():void{
          if(win!=null){
          win.close();
          win=null;
          }
         }
    ]]>
</mx:Script>
<mx:Button label="open window" click="openWindow()" x="248" y="132"/>
<mx:Button label="Close Window" click="CloseWindow()" x="248" y="162"/>
</mx:WindowedApplication>

3. buat folder pada folder scr dengan nama windows

4. buat komponen berdasarkan (based on) window nama kan dengan MyNativeWindow

pic1

5. isi file MyNativeWindow.MXML dengan kode berikut :

<?xml version="1.0" encoding="utf-8"?>
<mx:Window xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    width="400"
    height="300"
    title="My NativeWindows">
    <mx:Script>
        <![CDATA[
            private function TampilFullScreen():void{
            this.stage.displayState=StageDisplayState.FULL_SCREEN;
            }
            private function TampilNormal():void{
            this.stage.displayState=StageDisplayState.NORMAL;
            }
        ]]>
    </mx:Script>
    <mx:Button label="close" click="close()" x="171.5" y="156"/>
    <mx:Button label="FullScreen" click="TampilFullScreen()" x="156.5" y="79"/>
    <mx:Button label="NormalScreen" click="TampilNormal()" x="146" y="109"/>
</mx:Window>

Oke slamat mencoba..

Happy coding with Flex and AIR

Kumpulan Aplikasi AIR yang keren (2)

  1. GMDesk

    GMDesk is an application that lets you run Gmail, Google Calendar, Google Docs and Google Maps as a stand-alone application to do all your mail handling, calendar event reading etc with.

    GMDesk

  2. ReadAir

    ReadAir is a desktop client for Google Reader.

    readair

  3. Google Analytics Reporting Suite

    Google Analytics Reporting Suite brings Google Analytics to the desktop, with a host of features that help you understand how your website is performing and where you can improve.

    Google_Analytics

Photo & Video

Adobe AIR applications that allow you to search, edit, save or upload photo and video.

  1. Flickr Desktop Search

    Flickr
    Desktop Search
    is an Adobe AIR based utility which helps you to search Flickr images.

    Flickr_desktop_search

  2. ImageDropr

    ImageDropr is a new tool for uploading your images to flickr. This application takes a unique approach towards preparing your content, titles, tags, etc. by creating tools that expedite this process.

    imagedropr

  3. Flickr Flipper

    Flickr Flipper allows you to search for Flickr photos and also search for photos from specific Flickr users. It uses Papervision to display the photos one at a time and even allows you to download the photo to your computer.

    flickr_flipper

  4. Snoto

    Snoto Photo is a desktop application for browsing your recent photos as well as the recent photos of others. You can also do a slideshow of the photos.

    Snoto

  5. FLVPlay HD

    FLVPlay HD plays your local or remote flv and mp4 videos, as well as the ones from the YouTube servers which are available via the “Search” feature of the application.

    FLVPlayer

  6. AIRTube Video Downloader

    AIRTube Video Downloader allows you to download YouTube FLV videos by simply dragging or pasting in the video’s URL. After the video downloads the application will expand and show you a preview of the video.

    AIRTube_Video_Downloader

  7. RichFLV

    RichFLV allows you to read and edit FLV data. You can cut FLVs, convert the sound of the flv to mp3 and convert flv to swf.

    richflv

  8. uvLayer

    UvLayer is a social video application where you can discover, watch, collect and share video media. Searching currently focuses on videos from YouTube and Truveo.

    uvlayer

  9. mooFlair

    A desktop application that helps you to manage and watch both online and offline FLVs videos. More than a simple flv player, build your own FLV library and save your compilations in playlists.

    mooFlair

  10. Adobe Media Player

    Adobe Media Player allows you to queue up and download your favorite Internet TV content, track and download new episodes automatically, and manage your personal video library for viewing at your convenience.

    adobe_media_player

Design

Adoeb AIR tools that sharpen your design skill.

  1. Websnapshot

    Websnapshot allows you type a URL then take a snapshot using one of the three sizing methods; Thumbnail, Browser or fullpage view.

    websnapshot

  2. Shrink-O-Matic

    Shrink O’Matic is an AIR application to easily (batch) resize (shrink) images. It handles JPGs, GIFs and PNGs.

    shrink_o_matic

  3. Colorpicker

    colorPicker is a widget-like AIR application that lets you either choose a “web-safe” color from a color grid or design a color using sliders to adjust the red, green, and blue values of the color.

    colorpicker

  4. ColourLovers Desktop Color Finder

    Desktop Color Finder lets you search our entire database of nearly 1 million named colors and more than 300,00 user created color palettes.

    colourlovers

  5. Font Picker

    Font picker allows you to find the right font for the job.

    fontpicker

  6. Icon Generator

    Icon Generator is a little application that lets you generate a CS3 or Web 2.0 style icon, only 3 step. Pick color, type characters, and save it.

    icon_generator

  7. WebKut

    WebKut is an AIR application that allows you to capture web pages, or parts of them in a very simple way.

    webkut

  8. Color Browser

    Color Browser is a simple way to create and organize your favorite color palettes. Sets of colors are easily viewable in a clean interface.

    colorbrowser

  9. Photoshop Express Uploader

    Photoshop Express Uploader lets you drag and drop photos from your desktop to upload to Photoshop Express.

    adobe_photoshop_uploader

Microblogging

Adobe AIR applications that allow you to communicate with microblogs easier and faster.

  1. TweetDeck

    TweetDeck is an Adobe Air desktop application that aims to evolve the existing functionality of Twitter by taking an abundance of information.

    TweetDeck

  2. Alert Thingy

    Alert Thingy allows users to see the data stream from people they follow on FriendFeed, and post new messages directly to the service.

    alert_thingy

  3. Feedalizr

    Life streaming to your desktop. View, rate and comment on what your friends are sharing online, using one simple and easy to use desktop tool.

    feedalizr

  4. MySocial AIR

    MySocial is the newest Twitter/FriendFeed desktop app on the block, although MySocial has previously released a Firefox sidebar addon that offers similar functionality.

    mysocial_air

  5. Twhirl

    Twhirl connects to multiple Twitter, laconi.ca, Friendfeed and seesmic accounts.

    twhirl

  6. Posty

    Posty simplifies your microblogging. All you have to do is writing the message and clicking a button. Posty will automatically deliver your message to the services you selected.

    posty

  7. Toro

    Toro is a very simple Twitter client that aims for a speedier Twitter.

    toro

  8. Spaz

    Spaz is a Twitter client for users who value free, open-source software, attractive design, and customizability

    spaz

  9. bTT

    bTT lets you receive update from friendfee, post to friendfeed, send and receive tweets with twitter out of one application on your desktop.

    bTT

  10. Tweetr

    Tweetr lets you send files to your friends, but just dragging any file on to Tweetr. Tweetr will automatically upload your file and when it is done will provide a short url to send to your friends

    tweetr

Social Network

Adobe AIR applications that blend your favourite social networks into your desktop.

  1. DiggTop

    DiggTop is an application for Windows and MacOSX that lets you view a blended list of your favourite Digg topic or keyword feeds.

    diggtop

  2. Facedesk

    facedesk is an application that, when installed, becomes a stand-alone application to do all your Facebook surfing with.

    facedesk

  3. Flair

    Flair is a free, easy to install application that lets you know whenever you’re poked, or someone writes on your wall, or adds you as a friend - without having to constantly check the Facebook website or your email.

    flair

  4. Babuki

    Now all your contacts are in one place wherever you are. There’s no need to create an account and you only have to add details for the other IM networks once.

    babuki

  5. MINI DIGG

    The Digg mini client brings the latest news from Digg to your desktop. It also allows you to store the stories to your computer.

    mini_digg

Miscellaneous

Other useful desktop Adobe AIR applications.

  1. Wordpress Comment Moderator

    Moderator is a WordPress Plugin and associated desktop application, built using Adobe AIR, that allows you to view and moderate comments from your desktop.

    moderator

  2. Apprise Reader

    Apprise lets you read all your news in one place, and share it all in one place, too. With built-in support for over ten different ways to share stories,

    apprise_reader

  3. Ora Time and Expense

    Ora Time and Expense is a small easy-to-use application for tracking and generating timesheets, expense reports, and invoices.

    oral_time_space

  4. Timeloc

    Timeloc is a desktop widget that keeps track of the time you have spent working on a job or project. It will no longer be a case of guess work as to how much you need to bill your clients or assign to a project

    timeloc

  5. Doomi

    Doomi is a simple to-do-list application that designed to stay out of your way, be easy to use and look pretty.

    doomi

  6. Klok

    Klok is a tool intended to be used by individuals, who have a need to track the time they spend on projects, tasks or anything else for that matter.

    klok

  7. MiniTask

    MiniTask is a FREE, fast and easy-to-use task management application that helps you with organising your daily todos more efficiently.

    minitask

  8. Agile Agenda

    Agile Agenda is a project scheduling utility focused on allowing project managers to enter data about tasks. The software is capable of dynamically adjusting to changing conditions that occur during a project life cycle.

    agileagenda

  9. Xdrive Desktop Lite

    Xdrive Desktop Lite allows you to easily upload files and folders right from your hard drive, desktop, USB devices, or removable storage drives directly into your Xdrive web storage.

    xdrive_desktop_lite

  10. AirTalkr

    AirTalkr is a multi-protocol Instant Messenger that connects to MSN, Yahoo!, GTalk, AOL and ICQ. Not only that, it also has connects to to various Web 2.0 services like Flickr and YouTube.

    airtalk

  11. Pownce Desktop 2.0

    Pownce makes it even faster to read and send notes to your friends

    pownce

  12. CL Desktop
    - Craigslist is huge, and this application just makes sense. It’s easy to use and saves you time with saved searches and the ability to view pictures right from the original list.
  13. EarthBrowser
    - EarthBrowser is a revolutionary new platform for viewing and creating geographically based information.
  14. ebay Desktop
    - eBay Desktop is made for search, bidding, browsing, and watching. It’s all there, with a brand new interface.
  15. Finetune Desktop
    - Finetune Desktop gives you quick access to your custom playlists and will keep track of your favorite music from Finetune.
  16. Pandora Desktop
    - With the Pandora Desktop Application, you can play your Pandora stations right from your desktop – without opening a new browser window.
  17. Snackr
    - Snackr is a RSS ticker that pulls random items from your feeds and scrolls them across your desktop. When you see a title that looks interesting, you can click on it to pop up the item in a window.
  18. AIR iPhone
    - AIR iPhone is a desktop application created with Adobe AIR and Adobe Flex 3, it simulates the UI of the iPhone. It has the capabilities to make calls, receive calls, check voicemail, add contacts and even send voice messages.
  19. Adobe Developer Connection Developer Desktop
    - Adobe Developer Connection Developer Desktop (ADC Desktop) is an Adobe AIR application that delivers a number of helpful resources for Developers.
Resources

Resources, tutorials and collections of Adobe AIR applications.

  1. airapps Wiki

    A collection of Adobe® AIR™ applications out in the wild that the community can update.

    airapps

  2. RIAForge

    An online community site, built using their own products and targeted to support developers building open source projects for our products and platform.

    riaforge

  3. Apollo Hunter

    A community to share and download Adobe AIR applications with no cost.

    apollo_hunter

  4. O2Apps

    The ultimate resource for enthusiasts of Adobe AIR.

    o2apps

  5. Adobe AIR Marketplace

    Adobe AIR Marketplace is a place where AIR developers can publish their Adobe AIR applications for users to download.

    adobe_air_marketplace

  6. Adobe Air Tutorials

    Adobe AIR Tutorials. Articles, resources, tutorials, and downloads.

    adobe_air_tutorials

  7. Refreshing Apps

    Adobe AIR application showcase and resources.

    refreshingapps

sumber :

http://www.hongkiat.com
http://blog.tuvinh.com/60-useful-adobe-air-applications-you-should-know/