<?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 for Is Good Stuff</title>
	<atom:link href="http://www.isgoodstuff.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.isgoodstuff.com</link>
	<description>All the good stuff here!</description>
	<lastBuildDate>Thu, 09 Feb 2012 13:10:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>Comment on AS3 Buttons and Drag &amp; Drop by Alex T.</title>
		<link>http://www.isgoodstuff.com/2008/06/10/actionscript-30-buttons-and-drag-drop/comment-page-1/#comment-1881</link>
		<dc:creator>Alex T.</dc:creator>
		<pubDate>Thu, 09 Feb 2012 13:10:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.isgoodstuff.com/?p=67#comment-1881</guid>
		<description>use a enterFrame listener to check the events of dragdrop success. If any of the box is dragged correctly. Snap the movieclip (disable it&#039;s drag functionality) and add a score counter e.g. CorrectHit++

stage.addEvenListener(Event.ENTER_FRAME, checkDragDropChecker );
function checkDragDropChecker {
     if (CorrectHit &gt;= 7){
           funcGoNextFrame();
     }
}</description>
		<content:encoded><![CDATA[<p>use a enterFrame listener to check the events of dragdrop success. If any of the box is dragged correctly. Snap the movieclip (disable it&#8217;s drag functionality) and add a score counter e.g. CorrectHit++</p>
<p>stage.addEvenListener(Event.ENTER_FRAME, checkDragDropChecker );<br />
function checkDragDropChecker {<br />
     if (CorrectHit &gt;= 7){<br />
           funcGoNextFrame();<br />
     }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FREE Flash Carousel SlideShow by HTML5 : FREE Cloud Carousel &#124; Is Good Stuff</title>
		<link>http://www.isgoodstuff.com/2008/05/28/free-flash-carousel-slideshow/comment-page-1/#comment-1880</link>
		<dc:creator>HTML5 : FREE Cloud Carousel &#124; Is Good Stuff</dc:creator>
		<pubDate>Thu, 09 Feb 2012 12:57:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.isgoodstuff.com/?p=45#comment-1880</guid>
		<description>[...] T. on Feb 9, 2012 in Tech &#124; 0 comments   Previously I&#8217;ve wrote before about an article about flash based carousel here. Today I&#8217;m gonna share and write about carousel again, but not the flash version this is [...]</description>
		<content:encoded><![CDATA[<p>[...] T. on Feb 9, 2012 in Tech | 0 comments   Previously I&#8217;ve wrote before about an article about flash based carousel here. Today I&#8217;m gonna share and write about carousel again, but not the flash version this is [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 DocumentClass in Plain English by Ignatius Ahamiojie</title>
		<link>http://www.isgoodstuff.com/2008/06/06/actionscript-30-documentclass-in-plain-english/comment-page-1/#comment-1869</link>
		<dc:creator>Ignatius Ahamiojie</dc:creator>
		<pubDate>Thu, 02 Feb 2012 16:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.isgoodstuff.com/?p=54#comment-1869</guid>
		<description>Thank you sxo much. I&#039;ve been feeling mentally challenged(PC) till now</description>
		<content:encoded><![CDATA[<p>Thank you sxo much. I&#8217;ve been feeling mentally challenged(PC) till now</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 : Canvas Image Manipulation Tutorial by Collection of Best Interactive HTML5 Tutorials and Techniques</title>
		<link>http://www.isgoodstuff.com/2012/01/05/html5-image-in-canvas-tutorial/comment-page-1/#comment-1863</link>
		<dc:creator>Collection of Best Interactive HTML5 Tutorials and Techniques</dc:creator>
		<pubDate>Wed, 01 Feb 2012 10:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.isgoodstuff.com/?p=2127#comment-1863</guid>
		<description>[...] HTML5 : Canvas Image Manipulation Tutorial [...]</description>
		<content:encoded><![CDATA[<p>[...] HTML5 : Canvas Image Manipulation Tutorial [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 Buttons and Drag &amp; Drop by amer</title>
		<link>http://www.isgoodstuff.com/2008/06/10/actionscript-30-buttons-and-drag-drop/comment-page-1/#comment-1859</link>
		<dc:creator>amer</dc:creator>
		<pubDate>Tue, 31 Jan 2012 16:49:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.isgoodstuff.com/?p=67#comment-1859</guid>
		<description>Hi everybody, can somebody help me with hit test in example
i want to make tests as following:
in the first page I put Drag&amp;Drop test for ordering a sentence,
when the answer is correct I want the test to go next question (next frame)..etc
this is my code
package 
{

	import flash.events.*;
	import flash.display.*;


	public class Map extends MovieClip
	{
		var dragdrops:Array;
		
		


		public function Map()
		{
			// constructor code
			dragdrops = [Go,Going,Did,Are,About,Send,You,]
			var currentObject:DragDrop;
			for (var i:uint = 0; i &lt;dragdrops.length; i++)
			{
				currentObject = dragdrops[i];
				currentObject.target = getChildByName(currentObject.name + &quot;_tar&quot;);
			}
		}
		public function match():void
		{
			
									
		}
				//numOfMatches=0;//
			
		//addChild(win);//
	}

}
and as dragdrop
package 
{
	import flash.events.*;
	import flash.display.*;
	

	public class DragDrop extends Sprite
	{
		var origx = Number;
		var origy = Number;
		var target = DisplayObject;

		public function DragDrop()
		{
			origx = x;
			origy = y;
			// constructor code
			addEventListener(MouseEvent.MOUSE_DOWN,drag);
		}
		function drag (e:MouseEvent):void
		{
			stage.addEventListener(MouseEvent.MOUSE_UP,drop)
			startDrag();
			parent.addChild(this);
		}
		function drop (e:MouseEvent):void
		{
			stage.removeEventListener(MouseEvent.MOUSE_UP,drop)
			stopDrag();
			if (hitTestObject(target))
			{
				visible = false
				target.alpha = 1;
				//Object(parent).match();//
				Object(parent).match();
			}
			
			x = origx;
			y = origy;
		}
		
				
	}
	

}</description>
		<content:encoded><![CDATA[<p>Hi everybody, can somebody help me with hit test in example<br />
i want to make tests as following:<br />
in the first page I put Drag&amp;Drop test for ordering a sentence,<br />
when the answer is correct I want the test to go next question (next frame)..etc<br />
this is my code<br />
package<br />
{</p>
<p>	import flash.events.*;<br />
	import flash.display.*;</p>
<p>	public class Map extends MovieClip<br />
	{<br />
		var dragdrops:Array;</p>
<p>		public function Map()<br />
		{<br />
			// constructor code<br />
			dragdrops = [Go,Going,Did,Are,About,Send,You,]<br />
			var currentObject:DragDrop;<br />
			for (var i:uint = 0; i &lt;dragdrops.length; i++)<br />
			{<br />
				currentObject = dragdrops[i];<br />
				currentObject.target = getChildByName(currentObject.name + &quot;_tar&quot;);<br />
			}<br />
		}<br />
		public function match():void<br />
		{</p>
<p>		}<br />
				//numOfMatches=0;//</p>
<p>		//addChild(win);//<br />
	}</p>
<p>}<br />
and as dragdrop<br />
package<br />
{<br />
	import flash.events.*;<br />
	import flash.display.*;</p>
<p>	public class DragDrop extends Sprite<br />
	{<br />
		var origx = Number;<br />
		var origy = Number;<br />
		var target = DisplayObject;</p>
<p>		public function DragDrop()<br />
		{<br />
			origx = x;<br />
			origy = y;<br />
			// constructor code<br />
			addEventListener(MouseEvent.MOUSE_DOWN,drag);<br />
		}<br />
		function drag (e:MouseEvent):void<br />
		{<br />
			stage.addEventListener(MouseEvent.MOUSE_UP,drop)<br />
			startDrag();<br />
			parent.addChild(this);<br />
		}<br />
		function drop (e:MouseEvent):void<br />
		{<br />
			stage.removeEventListener(MouseEvent.MOUSE_UP,drop)<br />
			stopDrag();<br />
			if (hitTestObject(target))<br />
			{<br />
				visible = false<br />
				target.alpha = 1;<br />
				//Object(parent).match();//<br />
				Object(parent).match();<br />
			}</p>
<p>			x = origx;<br />
			y = origy;<br />
		}</p>
<p>	}</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FREE Flash Carousel SlideShow by kyle</title>
		<link>http://www.isgoodstuff.com/2008/05/28/free-flash-carousel-slideshow/comment-page-1/#comment-1839</link>
		<dc:creator>kyle</dc:creator>
		<pubDate>Tue, 10 Jan 2012 13:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.isgoodstuff.com/?p=45#comment-1839</guid>
		<description>Hey Richer, I found your link very useful. Indeed, on http://www.flashxml.net you can find high quality components, they are very professional. Cheers!</description>
		<content:encoded><![CDATA[<p>Hey Richer, I found your link very useful. Indeed, on <a href="http://www.flashxml.net" rel="nofollow">http://www.flashxml.net</a> you can find high quality components, they are very professional. Cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

