<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Laaker.com - Micah Laaker &#187; air</title>
	<atom:link href="http://www.laaker.com/micah/tag/air/feed" rel="self" type="application/rss+xml" />
	<link>http://www.laaker.com/micah</link>
	<description>Made in the U.S.A. by the Double A.</description>
	<lastBuildDate>Sun, 08 Jan 2012 17:00:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing the Adobe AIR SDK on a Mac</title>
		<link>http://www.laaker.com/micah/blog/2007/installing-the-adobe-air-sdk-on-a-mac</link>
		<comments>http://www.laaker.com/micah/blog/2007/installing-the-adobe-air-sdk-on-a-mac#comments</comments>
		<pubDate>Mon, 20 Aug 2007 07:29:39 +0000</pubDate>
		<dc:creator>Micah</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://mlaaker.com/cms/?p=113</guid>
		<description><![CDATA[I recently attempted to install the Adobe AIR SDK on my MacBook Pro so that I could compile AIR applications. While Adobe&#8217;s done some great work at developing and exposing their tools early to the public, I could not find a set of instructions that resulted in a working installation. Luckily, Yahoo! Developer Network co-worker [...]]]></description>
			<content:encoded><![CDATA[<p>I recently attempted to install the <a href="http://www.adobe.com/go/air">Adobe AIR</a> <a href="http://labs.adobe.com/downloads/airsdk.html">SDK</a> on my MacBook Pro so that I could compile AIR applications. While Adobe&#8217;s done some great work at developing and exposing their tools early to the public, I could not find a set of instructions that resulted in a working installation. </p>
<p>Luckily, Yahoo! Developer Network co-worker <a href="http://blog.unitedheroes.net/">JR Conlin</a> stepped up and helped me fill in a couple blanks. As such, I present my revision to the O&#8217;Reilly <a href="http://www.amazon.com/dp/0596515197?tag=0713m611l-20">Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Guide</a> (by <a href="http://www.mikechambers.com/blog/">Mike Chambers</a>, <a href="http://www.danieldura.com/">Daniel Dura</a>, &#038; <a href="http://blog.kevinhoyt.org/">Kevin Hoyt</a>)&#8230; particularly pages 27 and 28, Setting Up the AIR SDK and Command-LineTools:</p>
<blockquote><p>
There are a number of ways to add the path to the AIR SDK to your system path, depending on which shell you are using, and how you specify user environment variables. </p>
<p>The instructions below show how to modify your path environment variable if you are using the bash shell. </p>
<ol>
<li>Open the Terminal program (/Applications/Utilities/Terminal) </li>
<li>Make sure you&#8217;re in your home directory by typing
<pre>cd</pre>
<p> and pressing enter. </li>
<li>We need to check to see if one of two files are present. Run the following command
<pre>ls -la</pre>
</li>
<li>Look for a file named either.profile or.bashrc. </li>
<li>If you have neither the .profile or .bashrc file, then create the .profile file with the following command:<br />
 touch .profile </li>
<li>Open the .profile or .bashrc file with a text editor. </li>
<li>Look for a line that looks similar to this:
<pre>export PATH=$PATH:/usr/local/bin</pre>
</li>
<li>Add the path to the <sdk_path>/bindirectory to the end of this line. For example, if </sdk_path><sdk_path>/bin is at /airsdk/bin, the export path should look something like this:
<pre>export PATH=$PATH:/usr/local/bin;/airsdk/bin</pre>
<p>making sure to separate the entries with a colon.</sdk_path></li>
<li>If the file is empty, add the following line:
<pre>export PATH=$PATH:/airsdk/bin</pre>
</li>
<li>Save and close the file. </li>
</ol>
</blockquote>
<p><em>Insert:</em> Quit Terminal (and other applications), and restart your Mac. (If you don&#8217;t restart your Mac, your Terminal application won&#8217;t recognize the changes.)</p>
<blockquote>
<ol start="11">
<li>Run the following command to load the new settings source,
<pre>.profile</pre>
<p> (or
<pre>.bashrc</pre>
<p>, if that is the file you edited). </li>
</ol>
</blockquote>
<p><em>Revise item #11:</em> Run the following command to load the new settings source,
<pre>. .profile</pre>
<p> (or
<pre>. .bashrc</pre>
<p>, if that is the file you edited).</p>
<blockquote>
<ol start="12">
<li>You can confirm that the new settings have taken effect by typing
<pre>echo $PATH</pre>
<p> and pressing Enter. Make sure that the
<pre><sdk_path>/bin</sdk_path></pre>
<p> path is included in the output. </li>
<li>In order to test the installation, open a Terminal window and type
<pre>adt</pre>
<p>.<br /> <br />
You should see output similar this: </p>
<pre>Too few arguments.
Usage: adt -package air_file app_xml [ file_or_dir | -C dir file_or_dir ... ] ... </pre>
<p>meaning that the tools are configured correctly. </li>
</ol>
<p>If you get an error that the file cannot be found, then check the following things: </p>
<ul>
<li>Make sure the bin and runtime directories are included in the
<pre><sdk_path></sdk_path></pre>
<p> directory.</li>
<li>Make sure you included the path to
<pre><sdk_path>/bin</sdk_path></pre>
<p> correctly in the PATH environment variable.</li>
<li>Make sure you either opened a new Terminal window, or ran source on your configuration file.</li>
</ul>
</blockquote>
<p>If this works for you, too (or, if it does not), drop me a line in the Comments section. I will try to keep this updated as I hear from folks. Having <a href="http://onair.adobe.com/schedule/cities/atlanta.php">recently spoke at the Atlanta stop</a> of the OnAir tour, I can attest that developers are building exciting things with AIR&#8230; hopefully this will help a few others join those legions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laaker.com/micah/blog/2007/installing-the-adobe-air-sdk-on-a-mac/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.laaker.com @ 2012-02-06 23:07:18 -->
