<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:dtvmedia="http://participatoryculture.org/RSSModules/dtv/1.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Drag a custom window with Adobe Air</title>
	<atom:link href="http://softwareas.com/drag-a-custom-window-with-adobe-air/feed" rel="self" type="application/rss+xml" />
	<link>http://softwareas.com/drag-a-custom-window-with-adobe-air</link>
	<description>Mahemoff's Podcast/Blog - Web, Programming, Usability from the Author of 'Ajax Design Patterns' (AjaxPatterns.org)</description>
	<lastBuildDate>Tue, 09 Mar 2010 15:01:13 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: will</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-440024</link>
		<dc:creator>will</dc:creator>
		<pubDate>Tue, 07 Jul 2009 22:13:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-440024</guid>
		<description>&lt;p&gt;Air 1.5.1 withing the windowed application...&lt;/p&gt;

&lt;p&gt;stage.nativeWindow.startMove();&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Air 1.5.1 withing the windowed application&#8230;</p>
<p>stage.nativeWindow.startMove();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: solem</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-324986</link>
		<dc:creator>solem</dc:creator>
		<pubDate>Wed, 03 Sep 2008 10:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-324986</guid>
		<description>&lt;p&gt;Great! window.nativeWindow.startMove(); worked for me as well. Cheers guys...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great! window.nativeWindow.startMove(); worked for me as well. Cheers guys&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gavin</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-321836</link>
		<dc:creator>gavin</dc:creator>
		<pubDate>Fri, 29 Aug 2008 17:53:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-321836</guid>
		<description>&lt;p&gt;this works for me:&lt;/p&gt;

&lt;p&gt;document.onmousedown =
function() { window.nativeWindow.startMove(); }&lt;/p&gt;

&lt;p&gt;cheers
gavin&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>this works for me:</p>
<p>document.onmousedown =<br />
function() { window.nativeWindow.startMove(); }</p>
<p>cheers<br />
gavin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mahemoff</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-261772</link>
		<dc:creator>mahemoff</dc:creator>
		<pubDate>Mon, 09 Jun 2008 09:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-261772</guid>
		<description>&lt;p&gt;Looks like there was a change to the API at some stage.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Looks like there was a change to the API at some stage.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hector Menendez</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-261201</link>
		<dc:creator>Hector Menendez</dc:creator>
		<pubDate>Sun, 08 Jun 2008 17:14:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-261201</guid>
		<description>&lt;p&gt;If you are like me and ended up in this site looking for a quick sollution for this, the answer is:&lt;/p&gt;

&lt;p&gt;window.nativeWindow.startMove();&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>If you are like me and ended up in this site looking for a quick sollution for this, the answer is:</p>
<p>window.nativeWindow.startMove();</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andy matthews</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-208499</link>
		<dc:creator>andy matthews</dc:creator>
		<pubDate>Wed, 12 Mar 2008 01:22:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-208499</guid>
		<description>&lt;p&gt;Care to provide a little more detail? I&#039;m trying this snippet and I&#039;m getting nothing. The container I&#039;d like to be used as the draggable area is called titlebar. Would the resulting code be:&lt;/p&gt;

&lt;p&gt;document.titlebar.onmousedown =
        function() { window.htmlControl.stage.window.startMove(); } &lt;/p&gt;

&lt;p&gt;or am I missing something? Also, where are you placing this line?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Care to provide a little more detail? I&#8217;m trying this snippet and I&#8217;m getting nothing. The container I&#8217;d like to be used as the draggable area is called titlebar. Would the resulting code be:</p>
<p>document.titlebar.onmousedown =<br />
        function() { window.htmlControl.stage.window.startMove(); } </p>
<p>or am I missing something? Also, where are you placing this line?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mahemoff</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-200787</link>
		<dc:creator>mahemoff</dc:creator>
		<pubDate>Thu, 21 Feb 2008 16:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-200787</guid>
		<description>&lt;p&gt;I developed it on Mac, works fine there.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I developed it on Mac, works fine there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khanh</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-197731</link>
		<dc:creator>Khanh</dc:creator>
		<pubDate>Fri, 15 Feb 2008 22:11:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-197731</guid>
		<description>&lt;p&gt;Thanks for this, I&quot;ve been searching for this piece of code as well.  I&quot;m developing AIR on a mac... is this code specific to windows?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for this, I&#8221;ve been searching for this piece of code as well.  I&#8221;m developing AIR on a mac&#8230; is this code specific to windows?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A Modern Fable (AJM) &#187; Blog Archive &#187; Dragging Windows in Adobe AIR</title>
		<link>http://softwareas.com/drag-a-custom-window-with-adobe-air/comment-page-1#comment-92444</link>
		<dc:creator>A Modern Fable (AJM) &#187; Blog Archive &#187; Dragging Windows in Adobe AIR</dc:creator>
		<pubDate>Sat, 11 Aug 2007 21:49:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.softwareas.com/drag-a-custom-window-with-adobe-air#comment-92444</guid>
		<description>&lt;p&gt;[...] Here&#8217;s how to do that. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] Here&#8217;s how to do that. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
