Developing AIR for Android using Flash CS5

Posted by admin | Posted in Actionscript 3.0, Air, Flash, HFUG Meetings | Posted on 11-02-2011

0

The next meeting for the Hawaii Flash User Group will be held on February 22 nd, 2011 at the University of Hawai`i at Mānoa in the Human Nutrition, Food & Animal Sciences Building. The address is  1955 East-West Road · Honolulu, HI 96822 and the event will be held in  Room 202

Agenda

New to mobile development? Wondering how mobile applications are built? This presentation will walk you the entire development process of the AIR for Android application from design to deployment. Chris Griffith will show you how he designed and built the application using a variety of tools and techniques.

BIO

Chris Griffith is a Staff Engineer in the User Experience group at Qualcomm, Inc. He has over 15 years experience in developing a wide range of prototypes for a variety of clients. He currently works with the full spectrum of the Flash Platform from mobile devices to web/desktop.

He is also an Adobe Community Professional and is presently the co-manager of the San Diego Flash User Group and the Flash Catalyst Community Lead for Adobe Systems, Inc. He also has been involved with the National Science Foundation’s National Science Digital Library project. Recently he has developed several iPhone applications and Android application. He also writes for peachpit.com and O’Reilly’s InsideRIA. When he is not coding, he is either spending time with his family or out kayaking.
[Opinions and thoughts that are my own and that are not necessarily shared by the company that I work for.]

blog:chrisgriffith.wordpress.com

twitter: @chrisgriffith

This meeting will be hosted on-line as well.

The Connect URL is http://experts.adobeconnect.com/hawaiiflash/

To RSVP for  the meeting, please view on Adobe Groups Site

if you missed the meeting, here are the slides & the URL for the recording

Meeting Recording

It is best to save the pdf slides(right click save as) as they take a while to load

My Intro Slides

Chris’s Talk

Updates to Flash Player 10.1 & Air 2

Posted by admin | Posted in Air, Flash | Posted on 10-08-2010

1

Flash Player 10.1 has been updated the current release is 10.1.82.76. Adobe recommends that you update your players. Security update available for Adobe Flash Player
You can download the debug version on the Adobe Flash Player Support Center downloads

Also,  there is an update to Air 2, the current version is 2.0.3, download the current version here

What version of Adobe AIR runtime is installed?

Posted by admin | Posted in Air | Posted on 24-07-2010

0

To find out which version of the Adobe Air run time you have install is easy to find. I am using Mac OS X (Snow Leopard) so your path on another operating system might be a little different.

Open the the file /Library/Frameworks/Adobe\ AIR.framework/Versions/1.0/Resources/Info.plist in your favorite XML editor, and locate the <key>CFBundleVersion</key> entry (line 19).

The corresponding string below this entry (line 20) represents the version of Air, for your system. <string>2.0.2.12610</string>

Therefore on my Mac I am running Adobe Air version 2.0.2.12610

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleAllowMixedLocalizations</key>
	<true/>
	<key>CFBundleDevelopmentRegion</key>
	<string>English</string>
	<key>CFBundleExecutable</key>
	<string>Adobe AIR</string>
	<key>CFBundleIconFile</key>
	<string>Adobe AIR</string>
	<key>CFBundleIdentifier</key>
	<string>com.adobe.AIR</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundlePackageType</key>
	<string>FMWK</string>
	<key>CFBundleVersion</key>
	<string>2.0.2.12610</string>
	<key>NSHumanReadableCopyright</key>
	<string>Copyright © 2007-2010 Adobe Systems Inc.</string>
</dict>
</plist>

My next task is to create an Air application that checks this!