<?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 labs.grupow.com</title>
	<atom:link href="http://labs.grupow.com/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://labs.grupow.com</link>
	<description></description>
	<pubDate>Sat, 31 Jul 2010 11:55:20 +0000</pubDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Google Pacman by Raúl</title>
		<link>http://labs.grupow.com/index.php/2010/05/google-pacman/comment-page-1/#comment-5429</link>
		<dc:creator>Raúl</dc:creator>
		<pubDate>Wed, 21 Jul 2010 02:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=354#comment-5429</guid>
		<description>sweeeeet!</description>
		<content:encoded><![CDATA[<p>sweeeeet!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Pacman by John</title>
		<link>http://labs.grupow.com/index.php/2010/05/google-pacman/comment-page-1/#comment-5416</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 16 Jul 2010 18:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=354#comment-5416</guid>
		<description>There is a Google pacman editor, see http://www.youtube.com/watch?v=_Jj3-NGO7xo</description>
		<content:encoded><![CDATA[<p>There is a Google pacman editor, see <a href="http://www.youtube.com/watch?v=_Jj3-NGO7xo" rel="nofollow">http://www.youtube.com/watch?v=_Jj3-NGO7xo</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [ papervision3d ] Texture switch at runtime by Tito</title>
		<link>http://labs.grupow.com/index.php/2008/11/papervision3d-texture-switch-at-runtime/comment-page-1/#comment-5393</link>
		<dc:creator>Tito</dc:creator>
		<pubDate>Thu, 08 Jul 2010 12:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=37#comment-5393</guid>
		<description>awesome man!

thank you!</description>
		<content:encoded><![CDATA[<p>awesome man!</p>
<p>thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sending Variables in AS3 A.K.A. sendAndLoad in AS2 by raúl</title>
		<link>http://labs.grupow.com/index.php/2008/11/sending-variables-in-as3-aka-sendandload-in-as2/comment-page-1/#comment-5253</link>
		<dc:creator>raúl</dc:creator>
		<pubDate>Wed, 26 May 2010 16:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=21#comment-5253</guid>
		<description>Hi Sheera!
i don´t know if is too late for this answer hehe but......
did you fix it??</description>
		<content:encoded><![CDATA[<p>Hi Sheera!<br />
i don´t know if is too late for this answer hehe but&#8230;&#8230;<br />
did you fix it??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sound Manager by derek knox</title>
		<link>http://labs.grupow.com/index.php/2010/02/sound-manager/comment-page-1/#comment-5224</link>
		<dc:creator>derek knox</dc:creator>
		<pubDate>Thu, 06 May 2010 17:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=302#comment-5224</guid>
		<description>Nice, thanks. Definitely could have figured this out, but just googled real quick to see if he had an updated version and stumbled on this. So thanks, have a good one.</description>
		<content:encoded><![CDATA[<p>Nice, thanks. Definitely could have figured this out, but just googled real quick to see if he had an updated version and stumbled on this. So thanks, have a good one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sending Variables in AS3 A.K.A. sendAndLoad in AS2 by sheera</title>
		<link>http://labs.grupow.com/index.php/2008/11/sending-variables-in-as3-aka-sendandload-in-as2/comment-page-1/#comment-5202</link>
		<dc:creator>sheera</dc:creator>
		<pubDate>Mon, 19 Apr 2010 10:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=21#comment-5202</guid>
		<description>I am doing a project and my head is melted I can not get my login working without an error.Please can you help I have tried hundred of ways but still can not get it working.
I want to send back the userId from the login table as I use it for a test later in my flash site.

butSubmit.addEventListener(MouseEvent.CLICK, btnDown);

function btnDown(event:MouseEvent):void {

	
// Assign a variable name for our URLVariables object
var variables:URLVariables = new URLVariables();
// Build the varSend variable

var varSend:URLRequest = new URLRequest("login.php");
varSend.method = URLRequestMethod.POST;
varSend.data = variables;

var varLoader:URLLoader = new URLLoader;
varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
varLoader.addEventListener(Event.COMPLETE, completeHandler);

		variables.userName = userName.text;
		variables.userPassword= userPassword.text;

   		variables.sendRequest = "parse";	

   		varLoader.load(varSend);

// When the data comes back from PHP we display it here		
function completeHandler(event:Event):void{
	var loader:URLLoader = URLLoader(event.target);
	var result = loader.data.result;
	//if(result==success){
	//MovieClip(parent).gotoAndStop("test1");
	//}
	//var phpVar1 = event.target.data.var1;

	result1_txt.text = result;


}	


now my php file one of many I HAVE TRIED


0){

echo "result=success";
}
else
{
echo "result=failure";
}
?&gt;


// I  was trying this method


while($row=mysql_fetch_array($result)){

$userId=urlencode($row['userId']);
$userName=urlencode($row['userName']);
echo "userId=$userId";
echo "&amp;username="$userName";</description>
		<content:encoded><![CDATA[<p>I am doing a project and my head is melted I can not get my login working without an error.Please can you help I have tried hundred of ways but still can not get it working.<br />
I want to send back the userId from the login table as I use it for a test later in my flash site.</p>
<p>butSubmit.addEventListener(MouseEvent.CLICK, btnDown);</p>
<p>function btnDown(event:MouseEvent):void {</p>
<p>// Assign a variable name for our URLVariables object<br />
var variables:URLVariables = new URLVariables();<br />
// Build the varSend variable</p>
<p>var varSend:URLRequest = new URLRequest(&#8221;login.php&#8221;);<br />
varSend.method = URLRequestMethod.POST;<br />
varSend.data = variables;</p>
<p>var varLoader:URLLoader = new URLLoader;<br />
varLoader.dataFormat = URLLoaderDataFormat.VARIABLES;<br />
varLoader.addEventListener(Event.COMPLETE, completeHandler);</p>
<p>		variables.userName = userName.text;<br />
		variables.userPassword= userPassword.text;</p>
<p>   		variables.sendRequest = &#8220;parse&#8221;;	</p>
<p>   		varLoader.load(varSend);</p>
<p>// When the data comes back from PHP we display it here<br />
function completeHandler(event:Event):void{<br />
	var loader:URLLoader = URLLoader(event.target);<br />
	var result = loader.data.result;<br />
	//if(result==success){<br />
	//MovieClip(parent).gotoAndStop(&#8221;test1&#8243;);<br />
	//}<br />
	//var phpVar1 = event.target.data.var1;</p>
<p>	result1_txt.text = result;</p>
<p>}	</p>
<p>now my php file one of many I HAVE TRIED</p>
<p>0){</p>
<p>echo &#8220;result=success&#8221;;<br />
}<br />
else<br />
{<br />
echo &#8220;result=failure&#8221;;<br />
}<br />
?&gt;</p>
<p>// I  was trying this method</p>
<p>while($row=mysql_fetch_array($result)){</p>
<p>$userId=urlencode($row['userId']);<br />
$userName=urlencode($row['userName']);<br />
echo &#8220;userId=$userId&#8221;;<br />
echo &#8220;&amp;username=&#8221;$userName&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on wowFlag [flarToolkit + pv3d + wowEngine] by freeruler</title>
		<link>http://labs.grupow.com/index.php/2009/03/wowflag-flartoolkit-pv3d-wowengine/comment-page-1/#comment-5145</link>
		<dc:creator>freeruler</dc:creator>
		<pubDate>Wed, 07 Apr 2010 06:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=103#comment-5145</guid>
		<description>that's a great video~~~!!

thks</description>
		<content:encoded><![CDATA[<p>that&#8217;s a great video~~~!!</p>
<p>thks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grupow is hiring! by raúl</title>
		<link>http://labs.grupow.com/index.php/2009/05/grupow-is-hiring/comment-page-1/#comment-4791</link>
		<dc:creator>raúl</dc:creator>
		<pubDate>Tue, 09 Feb 2010 03:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=158#comment-4791</guid>
		<description>MVS?????? 
eso fue hace mucho tiempo!!! jajaja
deberías de ver nuestros mas recientes trabajos XD</description>
		<content:encoded><![CDATA[<p>MVS??????<br />
eso fue hace mucho tiempo!!! jajaja<br />
deberías de ver nuestros mas recientes trabajos XD</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grupow is hiring! by Russell Bittner</title>
		<link>http://labs.grupow.com/index.php/2009/05/grupow-is-hiring/comment-page-1/#comment-4762</link>
		<dc:creator>Russell Bittner</dc:creator>
		<pubDate>Thu, 04 Feb 2010 15:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=158#comment-4762</guid>
		<description>El trabajo (o sea, el Website) que Ustedes han hecho para MVS es -- por lo menos al MI paracer -- el mejor que nunca he visto en el 'Net.

Felicidades!

Russell
Brooklyn, New York, EE.UU</description>
		<content:encoded><![CDATA[<p>El trabajo (o sea, el Website) que Ustedes han hecho para MVS es &#8212; por lo menos al MI paracer &#8212; el mejor que nunca he visto en el &#8216;Net.</p>
<p>Felicidades!</p>
<p>Russell<br />
Brooklyn, New York, EE.UU</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Strategy Pattern by zim22</title>
		<link>http://labs.grupow.com/index.php/2009/12/strategy-pattern/comment-page-1/#comment-4600</link>
		<dc:creator>zim22</dc:creator>
		<pubDate>Sat, 16 Jan 2010 09:40:23 +0000</pubDate>
		<guid isPermaLink="false">http://labs.grupow.com/?p=256#comment-4600</guid>
		<description>thanks for your explanation of Strategy Pattern. It's awesome.</description>
		<content:encoded><![CDATA[<p>thanks for your explanation of Strategy Pattern. It&#8217;s awesome.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
