<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Adobe® AIR on Gentoo Linux</title>
	<atom:link href="http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux</link>
	<description>assorted ramblings of the flashman...</description>
	<lastBuildDate>Wed, 16 Jun 2010 08:51:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: My take on tweetdeck on gentoo &#171; Netalien&#39;s Blag</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11683</link>
		<dc:creator>My take on tweetdeck on gentoo &#171; Netalien&#39;s Blag</dc:creator>
		<pubDate>Tue, 01 Jun 2010 18:59:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11683</guid>
		<description>[...] install so there&#8217;s no point in re-troubleshooting things. A popular link for instance is this from flashinthepan, although it doesn&#8217;t center on tweetdeck, the concept is the same: Execute your AIR app [...]</description>
		<content:encoded><![CDATA[<p>[...] install so there&#8217;s no point in re-troubleshooting things. A popular link for instance is this from flashinthepan, although it doesn&#8217;t center on tweetdeck, the concept is the same: Execute your AIR app [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kai</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11679</link>
		<dc:creator>Kai</dc:creator>
		<pubDate>Mon, 31 May 2010 04:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11679</guid>
		<description>Hey! Thanks a bunch for the instructions! They worked PERFECTLY. It&#039;s really slick having Pandora on my Linux desktop now.

Just to give back, here&#039;s a nice little scriptlet I wrote in Perl to launch an AIR app without all the BS. Just copy it into a file called airlaunch.pl in your /opt/AIR-apps directory, hardlink /usr/bin/airlaunch to /opt/AIR-apps/airlaunch and you won&#039;t even hardly notice a challenge.

##BEGIN SCRIPT##
#!/usr/bin/perl -w

# AIR Launch!
#
# Used to start an Adobe AIR application in nodebug mode.
# DO NOT USE WITH A TEXT ONLY CONSOLE! You could break something.

$adl_binspec = &quot;/opt/AIR-SDK/bin/adl&quot;;
$sys_airspace = &quot;/opt/AIR-apps&quot;;
$usr_airspace = &quot;$ENV{&#039;HOME&#039;}/AIR-apps&quot;;

die &quot;AIR not installed! Expected adl at $adl_binspec.\n&quot; unless -e $adl_binspec;
die &quot;Usage: $0 [air_app]\nAIR is meant for graphical terminals ONLY.\n&quot; if @ARGV != 1;
die &quot;Do NOT use this with .air files! Extract them to $sys_airspace or $usr_airspace first!\n&quot; if $ARGV[0] =~ /\Q.air\E/;

$app_name = $ARGV[0];

if ( -e $app_name )
{
	$app_path = $app_name;
	##Perhaps the user gave us a fully qualified path! :) ##
}
elsif ( -e &quot;$sys_airspace/$app_name&quot; )
{
	$app_path = &quot;$sys_airspace/$app_name&quot;;
	#Check what apps the system has installed!
}
elsif ( -e &quot;$usr_airspace/$app_name&quot; )
{
	$app_path = &quot;$sys_airspace/$app_name&quot;;
	##Maybe the user has the app installed in their AIR directory?##
}
else
{
	die &quot;Could not locate application \&#039;$app_name\&#039;.\n&quot;;
	##Nevermind, the user is a complete cock.##
}

##Now check to make sure the xml file is there. This file spec could change at Adobe&#039;s whim!##
if ( -e &quot;$app_path/META-INF/AIR/application.xml&quot; )
{
	$command = &quot;$adl_binspec -nodebug $app_path/META-INF/AIR/application.xml $app_path&quot;;
}

(system $command) == 0 &#124;&#124; die &quot;Failed to execute $app_name!\n&quot;;
##END SCRIPT##</description>
		<content:encoded><![CDATA[<p>Hey! Thanks a bunch for the instructions! They worked PERFECTLY. It&#8217;s really slick having Pandora on my Linux desktop now.</p>
<p>Just to give back, here&#8217;s a nice little scriptlet I wrote in Perl to launch an AIR app without all the BS. Just copy it into a file called airlaunch.pl in your /opt/AIR-apps directory, hardlink /usr/bin/airlaunch to /opt/AIR-apps/airlaunch and you won&#8217;t even hardly notice a challenge.</p>
<p>##BEGIN SCRIPT##<br />
#!/usr/bin/perl -w</p>
<p># AIR Launch!<br />
#<br />
# Used to start an Adobe AIR application in nodebug mode.<br />
# DO NOT USE WITH A TEXT ONLY CONSOLE! You could break something.</p>
<p>$adl_binspec = &#8220;/opt/AIR-SDK/bin/adl&#8221;;<br />
$sys_airspace = &#8220;/opt/AIR-apps&#8221;;<br />
$usr_airspace = &#8220;$ENV{&#8216;HOME&#8217;}/AIR-apps&#8221;;</p>
<p>die &#8220;AIR not installed! Expected adl at $adl_binspec.\n&#8221; unless -e $adl_binspec;<br />
die &#8220;Usage: $0 [air_app]\nAIR is meant for graphical terminals ONLY.\n&#8221; if @ARGV != 1;<br />
die &#8220;Do NOT use this with .air files! Extract them to $sys_airspace or $usr_airspace first!\n&#8221; if $ARGV[0] =~ /\Q.air\E/;</p>
<p>$app_name = $ARGV[0];</p>
<p>if ( -e $app_name )<br />
{<br />
	$app_path = $app_name;<br />
	##Perhaps the user gave us a fully qualified path! <img src='http://www.flashinthepan.ca/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ##<br />
}<br />
elsif ( -e &#8220;$sys_airspace/$app_name&#8221; )<br />
{<br />
	$app_path = &#8220;$sys_airspace/$app_name&#8221;;<br />
	#Check what apps the system has installed!<br />
}<br />
elsif ( -e &#8220;$usr_airspace/$app_name&#8221; )<br />
{<br />
	$app_path = &#8220;$sys_airspace/$app_name&#8221;;<br />
	##Maybe the user has the app installed in their AIR directory?##<br />
}<br />
else<br />
{<br />
	die &#8220;Could not locate application \&#8217;$app_name\&#8217;.\n&#8221;;<br />
	##Nevermind, the user is a complete cock.##<br />
}</p>
<p>##Now check to make sure the xml file is there. This file spec could change at Adobe&#8217;s whim!##<br />
if ( -e &#8220;$app_path/META-INF/AIR/application.xml&#8221; )<br />
{<br />
	$command = &#8220;$adl_binspec -nodebug $app_path/META-INF/AIR/application.xml $app_path&#8221;;<br />
}</p>
<p>(system $command) == 0 || die &#8220;Failed to execute $app_name!\n&#8221;;<br />
##END SCRIPT##</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: angelblade</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11541</link>
		<dc:creator>angelblade</dc:creator>
		<pubDate>Tue, 23 Mar 2010 19:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11541</guid>
		<description>and proxy settings?????</description>
		<content:encoded><![CDATA[<p>and proxy settings?????</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venefyxatu</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11344</link>
		<dc:creator>Venefyxatu</dc:creator>
		<pubDate>Thu, 10 Dec 2009 11:24:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11344</guid>
		<description>Excellent post! 

I had an extra issue because I&#039;m an Awesome user, but there&#039;s documentation on the Adobe website which got me past that final speedbump and lets me run AIR apps as well ( http://kb2.adobe.com/cps/492/cpsid_49267.html --&gt; check the bottom of the page)</description>
		<content:encoded><![CDATA[<p>Excellent post! </p>
<p>I had an extra issue because I&#8217;m an Awesome user, but there&#8217;s documentation on the Adobe website which got me past that final speedbump and lets me run AIR apps as well ( <a href="http://kb2.adobe.com/cps/492/cpsid_49267.html" rel="nofollow">http://kb2.adobe.com/cps/492/cpsid_49267.html</a> &#8211;&gt; check the bottom of the page)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SDNick484</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11214</link>
		<dc:creator>SDNick484</dc:creator>
		<pubDate>Wed, 28 Oct 2009 06:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11214</guid>
		<description>I used your instructions to get the download manager for Shockhound (a music download site) to work in Gentoo ~amd64.  I had to first install it in a Windows 7 VM to get the .air files (they were in C:\Program Files (x86)\Shockhound Download Manager.  Many thanks.</description>
		<content:encoded><![CDATA[<p>I used your instructions to get the download manager for Shockhound (a music download site) to work in Gentoo ~amd64.  I had to first install it in a Windows 7 VM to get the .air files (they were in C:\Program Files (x86)\Shockhound Download Manager.  Many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11128</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Fri, 11 Sep 2009 09:09:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11128</guid>
		<description>&quot;The other part of being a Gentoo user however, means that I wasn’t going to give up in a hurry.&quot;

This! This is me right now. It&#039;s five in the morning. My Pandora free ran out so I upgraded to Pandora premium and want to run the payer... which runs on adobe Air.

Thank you for posting this. Bookmarked for tommorrow. :)</description>
		<content:encoded><![CDATA[<p>&#8220;The other part of being a Gentoo user however, means that I wasn’t going to give up in a hurry.&#8221;</p>
<p>This! This is me right now. It&#8217;s five in the morning. My Pandora free ran out so I upgraded to Pandora premium and want to run the payer&#8230; which runs on adobe Air.</p>
<p>Thank you for posting this. Bookmarked for tommorrow. <img src='http://www.flashinthepan.ca/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sundeep</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11124</link>
		<dc:creator>Sundeep</dc:creator>
		<pubDate>Mon, 07 Sep 2009 02:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11124</guid>
		<description>Hi
Just wanted to point out that AIR-Linux, has been out of beta for a long time now, its at par with AIR on windows. Download the latest version from: http://get.adobe.com/air/</description>
		<content:encoded><![CDATA[<p>Hi<br />
Just wanted to point out that AIR-Linux, has been out of beta for a long time now, its at par with AIR on windows. Download the latest version from: <a href="http://get.adobe.com/air/" rel="nofollow">http://get.adobe.com/air/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John McKnight</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11118</link>
		<dc:creator>John McKnight</dc:creator>
		<pubDate>Fri, 04 Sep 2009 20:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11118</guid>
		<description>Awesome guide.  Worked perfectly for me except rather than install everything to /opt, I installed everything to ~/local and adjusted the Bash script accordingly.  I figure that unless you run a multi-user system where the users use the desktop, run this all from within your /home directory.</description>
		<content:encoded><![CDATA[<p>Awesome guide.  Worked perfectly for me except rather than install everything to /opt, I installed everything to ~/local and adjusted the Bash script accordingly.  I figure that unless you run a multi-user system where the users use the desktop, run this all from within your /home directory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Lund</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11106</link>
		<dc:creator>John Lund</dc:creator>
		<pubDate>Fri, 21 Aug 2009 15:18:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11106</guid>
		<description>This is great.  I was bummed when I couldn&#039;t get the Pandora AIR app to run initially on my Gentoo boxes.  The instructions here worked, and I don&#039;t need to have a browser open to use Pandora any more.  Yay!</description>
		<content:encoded><![CDATA[<p>This is great.  I was bummed when I couldn&#8217;t get the Pandora AIR app to run initially on my Gentoo boxes.  The instructions here worked, and I don&#8217;t need to have a browser open to use Pandora any more.  Yay!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux/comment-page-1#comment-11045</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Fri, 03 Jul 2009 19:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbox.ca/blog/?p=6#comment-11045</guid>
		<description>I get &quot;Illegal instruction&quot; when I run the SDK, the AIR installer. I can&#039;t find the 1.1 version anywhere... anyone got a copy?</description>
		<content:encoded><![CDATA[<p>I get &#8220;Illegal instruction&#8221; when I run the SDK, the AIR installer. I can&#8217;t find the 1.1 version anywhere&#8230; anyone got a copy?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
