<?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>Tohir Solomons &#187; Adobe AIR</title>
	<atom:link href="http://www.tohir.co.za/category/software-and-technology/adobe-air/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tohir.co.za</link>
	<description></description>
	<lastBuildDate>Sat, 04 Sep 2010 06:05:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Simple Drag and Drop from Adobe AIR</title>
		<link>http://www.tohir.co.za/2009/08/21/simple-drag-and-drop-from-adobe-air/</link>
		<comments>http://www.tohir.co.za/2009/08/21/simple-drag-and-drop-from-adobe-air/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 13:47:54 +0000</pubDate>
		<dc:creator>Tohir</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>

		<guid isPermaLink="false">http://www.tohir.co.za/?p=324</guid>
		<description><![CDATA[Quite a few articles and tutorials show you how to drag and drop a file onto an Adobe AIR application. This one will show you how to drag one FROM an Adobe AIR application TO YOUR DESKTOP (or any other location you provide. The code is really simple: #dragcontent { margin: 20px; padding: 10px; /* Spacing */ background: lightyellow; [...]]]></description>
			<content:encoded><![CDATA[<p>Quite a few articles and tutorials show you how to drag and drop a file onto an Adobe AIR application. This one will show you how to drag one FROM an Adobe AIR application TO YOUR DESKTOP (or any other location you provide. The code is really simple:</p>
<pre class="brush:javascript">
<script type="text/javascript" src="AIRAliases.js"></script>
<style type="text/css">
	#dragcontent {
		margin: 20px; padding: 10px; /* Spacing */ 
		background: lightyellow; 
		border: 1px solid red;
		border-right: 20px solid red; 
		-khtml-user-drag: element; /* This makes the element draggable*/ 
	}
</style>

<script type="text/javascript">
    function onDragStart(event)
    {
     	event.dataTransfer.effectAllowed = "copy";
		var dragFile = new air.File("app:/capetown.jpg");
		event.dataTransfer.setData("application/x-vnd.adobe.air.file-list", new Array(dragFile));
	}
</script>
<span id="dragcontent" ondragstart="onDragStart(event)">Drag Me to the Desktop</span>
</pre>
<p>Download: <a href="http://www.tohir.co.za/wp-content/uploads/2009/08/simpledragfromair.zip">Source Code</a></p>
<p>To run, extract files from archive, and then run: adl application.xml</p>
<p><map name='google_ad_map_324_d66c8ad2bfa7c2ab'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/324?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_324_d66c8ad2bfa7c2ab' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=324&amp;url= http%3A%2F%2Fwww.tohir.co.za%2F2009%2F08%2F21%2Fsimple-drag-and-drop-from-adobe-air%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.tohir.co.za/2009/08/21/simple-drag-and-drop-from-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically generating a Sandbox in Adobe AIR</title>
		<link>http://www.tohir.co.za/2009/08/19/dynamically-generating-a-sandbox-in-adobe-air/</link>
		<comments>http://www.tohir.co.za/2009/08/19/dynamically-generating-a-sandbox-in-adobe-air/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 12:12:17 +0000</pubDate>
		<dc:creator>Tohir</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>

		<guid isPermaLink="false">http://www.tohir.co.za/?p=318</guid>
		<description><![CDATA[Something that seems to have worked document.write( '' ); Thoughts?]]></description>
			<content:encoded><![CDATA[<p>Something that seems to have worked</p>
<pre class="brush:javascript"><script type="text/javascript">
    document.write(
        '<iframe id="ctools" src="' + serverURL + "
        sandboxRoot="' + serverURL + '" 
        ondominitialize="yourFunction" 
        style="width:100%; height:100%; 
        border:none;"></iframe>'
    ); 
</script>
</pre>
<p>Thoughts?</p>
<p><map name='google_ad_map_318_d66c8ad2bfa7c2ab'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/318?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_318_d66c8ad2bfa7c2ab' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=318&amp;url= http%3A%2F%2Fwww.tohir.co.za%2F2009%2F08%2F19%2Fdynamically-generating-a-sandbox-in-adobe-air%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.tohir.co.za/2009/08/19/dynamically-generating-a-sandbox-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Focus Booster App</title>
		<link>http://www.tohir.co.za/2009/08/04/focus-booster-app/</link>
		<comments>http://www.tohir.co.za/2009/08/04/focus-booster-app/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 07:54:32 +0000</pubDate>
		<dc:creator>Tohir</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Reflections/Thoughts]]></category>
		<category><![CDATA[Software and Technology]]></category>

		<guid isPermaLink="false">http://www.tohir.co.za/2009/08/04/focus-booster-app/</guid>
		<description><![CDATA[For the past couple of days, I&#8217;ve been experimenting with a tool called Focus Booster. It&#8217;s a simple app with an easy method to help you measure and increase your focus and concentration: &#160; Firstly, choose the amount of time you would like to complete a particular task. By default it is set to 25 [...]]]></description>
			<content:encoded><![CDATA[<p>For the past couple of days, I&#8217;ve been experimenting with a tool called Focus Booster. It&#8217;s a simple app with an easy method to help you measure and increase your focus and concentration:</p>
<div align="center"><img src="http://www.tohir.co.za/wp-content/uploads/2009/08/focusbooster.png" style="max-width: 800px;" alt="" /></div>
<p>&nbsp;</p>
<ol>
<li>Firstly, choose the amount of time you would like to complete a particular task. By default it is set to 25 minutes.</li>
<li>Prepare to do the task, clear your PC desktop of any distractions, and start the timer.</li>
<li>Continue working until you&#8217;ve completed the task or the timer runs out.</li>
<li>Take a break</li>
<li>Restart the process with your next task</li>
</ol>
<p>Tiny app, simple process, but it works for me, and these are the benefits I believe are derived:</p>
<ul>
<li>Forces you to plan and think about a single task you would like to perform</li>
<li>A quick glance at the timer helps you focus, there is something watching you!</li>
<li>Helps you to persevere, (just another 8 more minutes to go, etc.)</li>
<li>Provides some type of measurement of how long you can focus, and challenges you to better it. The next version will allow you to record your focus sessions.</li>
</ul>
<p>Focus Booster is a free application and requires <a href="http://www.adobe.com/products/air/">Adobe AIR</a> to run. Download it at: <a href="http://www.focusboosterapp.com/">http://www.focusboosterapp.com/</a> . Follow updates on twitter <a href="http://twitter.com/focusboosterapp">@focusboosterapp</a><br />
&nbsp;</p>
<div class="zemanta-pixie"><img src="http://img.zemanta.com/pixy.gif?x-id=8f2976b9-9393-85e4-a13f-3cd97ea84de0" alt="" class="zemanta-pixie-img" /></div>
<p><map name='google_ad_map_309_d66c8ad2bfa7c2ab'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/309?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_309_d66c8ad2bfa7c2ab' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=309&amp;url= http%3A%2F%2Fwww.tohir.co.za%2F2009%2F08%2F04%2Ffocus-booster-app%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.tohir.co.za/2009/08/04/focus-booster-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Uninstall Adobe AIR Apps on Ubuntu (via Synaptic)</title>
		<link>http://www.tohir.co.za/2009/08/03/how-to-uninstall-adobe-air-apps-on-ubuntu-via-synaptic/</link>
		<comments>http://www.tohir.co.za/2009/08/03/how-to-uninstall-adobe-air-apps-on-ubuntu-via-synaptic/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 18:34:14 +0000</pubDate>
		<dc:creator>Tohir</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.tohir.co.za/?p=304</guid>
		<description><![CDATA[There are two ways to uninstall Adobe AIR&#160;apps on Ubuntu. 1)&#160;Access to original .air file If you have access to the original .air file, run it and it will give you a screen with options to either Uninstall, Run Now or Cancel. Simply click on Uninstall. &#160; 2)&#160;Use Synaptic Package Manager A second more easier [...]]]></description>
			<content:encoded><![CDATA[<p>There are two ways to uninstall Adobe AIR&nbsp;apps on Ubuntu.</p>
<p><strong>1)&nbsp;Access to original .air file</strong></p>
<p>If you have access to the original .air file, run it and it will give you a screen with options to either Uninstall, Run Now or Cancel. Simply click on Uninstall.</p>
<p style="text-align: center;"><img width="488" height="403" class="aligncenter size-full wp-image-306" title="Screenshot-Application Install" alt="Screenshot-Application Install" src="http://www.tohir.co.za/wp-content/uploads/2009/08/Screenshot-Application-Install.png" /></p>
<p>&nbsp;</p>
<p><strong>2)&nbsp;Use Synaptic Package Manager</strong></p>
<p>A second more easier approach (particularly if you lost the .air package) is to use Synaptic.&nbsp;From the sidebar, simply choose: Status &gt; Installed (local or obsolete)</p>
<p style="text-align: center;"><img width="683" height="513" class="aligncenter size-full wp-image-305" title="Adobe AIR apps list in Synaptic" alt="Adobe AIR apps list in Synaptic" src="http://www.tohir.co.za/wp-content/uploads/2009/08/adobeairappssynaptic.png" /></p>
<p>&nbsp;</p>
<p>Discovering this makes me less hesitant to try our different AIR&nbsp;apps, trying to find out which one works best.</p>
<p><map name='google_ad_map_304_d66c8ad2bfa7c2ab'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/304?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_304_d66c8ad2bfa7c2ab' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=304&amp;url= http%3A%2F%2Fwww.tohir.co.za%2F2009%2F08%2F03%2Fhow-to-uninstall-adobe-air-apps-on-ubuntu-via-synaptic%2F' /></p>]]></content:encoded>
			<wfw:commentRss>http://www.tohir.co.za/2009/08/03/how-to-uninstall-adobe-air-apps-on-ubuntu-via-synaptic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
