<?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: Send and load variables with AS3 and PHP</title>
	<atom:link href="http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/</link>
	<description>Flash CMS Framework, Fleb Framework, Global Navigation and other ActionScript Stuff</description>
	<lastBuildDate>Tue, 24 Jan 2012 19:46:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Christian</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1444</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Mon, 17 Oct 2011 04:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1444</guid>
		<description>If you like, you can send me a download link to your project, so I can have a look at the whole picture.

Cheers,
Christian</description>
		<content:encoded><![CDATA[<p>If you like, you can send me a download link to your project, so I can have a look at the whole picture.</p>
<p>Cheers,<br />
Christian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: myth</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1438</link>
		<dc:creator>myth</dc:creator>
		<pubDate>Fri, 14 Oct 2011 17:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1438</guid>
		<description>i really don&#039;t know what the problem but i will use navigateToURL and the GET function to send parameters..</description>
		<content:encoded><![CDATA[<p>i really don&#8217;t know what the problem but i will use navigateToURL and the GET function to send parameters..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: myth</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1437</link>
		<dc:creator>myth</dc:creator>
		<pubDate>Fri, 14 Oct 2011 17:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1437</guid>
		<description>your example doesn&#039;t work for me... i even tried with xampp(i guess you can&#039;t run php scripts without a server) but still nothing happens... something fishy is going here;

before i tried your class, i used this code:

var vars:URLVariables = new URLVariables();
vars.filename = &quot;http://localhost/website/gallery/images/img1.jpg&quot;;
var req:URLRequest = new URLRequest(&quot;http://localhost/website/download.php&quot;);
req.method = URLRequestMethod.POST;
req.data = vars;
var loader2:URLLoader = new URLLoader(req);
loader2.addEventListener(Event.COMPLETE, onDataIn);
loader2.dataFormat = URLLoaderDataFormat.VARIABLES;
loader2.load(req);

but didn&#039;t work :&#124;
any ideas what could be the problem?</description>
		<content:encoded><![CDATA[<p>your example doesn&#8217;t work for me&#8230; i even tried with xampp(i guess you can&#8217;t run php scripts without a server) but still nothing happens&#8230; something fishy is going here;</p>
<p>before i tried your class, i used this code:</p>
<p>var vars:URLVariables = new URLVariables();<br />
vars.filename = &#8220;http://localhost/website/gallery/images/img1.jpg&#8221;;<br />
var req:URLRequest = new URLRequest(&#8220;http://localhost/website/download.php&#8221;);<br />
req.method = URLRequestMethod.POST;<br />
req.data = vars;<br />
var loader2:URLLoader = new URLLoader(req);<br />
loader2.addEventListener(Event.COMPLETE, onDataIn);<br />
loader2.dataFormat = URLLoaderDataFormat.VARIABLES;<br />
loader2.load(req);</p>
<p>but didn&#8217;t work <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /><br />
any ideas what could be the problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1436</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Fri, 14 Oct 2011 07:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1436</guid>
		<description>Have you tried out the example files? You should add the event Listener vl.addEventListener(Event.COMPLETE, onVarsLoaded); in order to know when then vars are loaded.</description>
		<content:encoded><![CDATA[<p>Have you tried out the example files? You should add the event Listener vl.addEventListener(Event.COMPLETE, onVarsLoaded); in order to know when then vars are loaded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: myth</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1428</link>
		<dc:creator>myth</dc:creator>
		<pubDate>Wed, 12 Oct 2011 15:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1428</guid>
		<description>hey... I tried this code but doesn&#039;t seem to work for me.. for start I need only to run a php script from local (parameters doesn&#039;t matter now) and when I run the html file with swf embed doesn&#039;t run the script

using navigateToURL works without any problems but if i use the function VarLoader doesn&#039;t work anymore... the script should open a force download for an image located on localhost 

Here&#039;s my code:
var varObj:Object = {};
varObj.textinput0 = escape(&quot;arrrrr&quot;);
varObj.textinput1 = escape(&quot;grrrrr&quot;);
var vl:VarLoader=new VarLoader(&quot;http://localhost/website/download.php&quot;,varObj);

should I need to add something else in order to work?</description>
		<content:encoded><![CDATA[<p>hey&#8230; I tried this code but doesn&#8217;t seem to work for me.. for start I need only to run a php script from local (parameters doesn&#8217;t matter now) and when I run the html file with swf embed doesn&#8217;t run the script</p>
<p>using navigateToURL works without any problems but if i use the function VarLoader doesn&#8217;t work anymore&#8230; the script should open a force download for an image located on localhost </p>
<p>Here&#8217;s my code:<br />
var varObj:Object = {};<br />
varObj.textinput0 = escape(&#8220;arrrrr&#8221;);<br />
varObj.textinput1 = escape(&#8220;grrrrr&#8221;);<br />
var vl:VarLoader=new VarLoader(&#8220;http://localhost/website/download.php&#8221;,varObj);</p>
<p>should I need to add something else in order to work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1421</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Mon, 10 Oct 2011 13:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1421</guid>
		<description>Hi
Sorry for the delay. Is it still not working?</description>
		<content:encoded><![CDATA[<p>Hi<br />
Sorry for the delay. Is it still not working?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wRaa</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1411</link>
		<dc:creator>wRaa</dc:creator>
		<pubDate>Tue, 04 Oct 2011 15:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1411</guid>
		<description>I cant get this to work online, it works local but once i upload it nothing happens when i press send, can some of the functions be blogged serverside or am i doing something wrong? my webhost supports both php and flash..
Please help :)</description>
		<content:encoded><![CDATA[<p>I cant get this to work online, it works local but once i upload it nothing happens when i press send, can some of the functions be blogged serverside or am i doing something wrong? my webhost supports both php and flash..<br />
Please help <img src='http://blog.turtlebite.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1389</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Fri, 23 Sep 2011 04:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1389</guid>
		<description>It&#039;s in Firefox sometimes a problem. Copy and paste this link: http://blog.turtlebite.com/wp-content/data/varloader/varloader.zip

Cheers,
Christian</description>
		<content:encoded><![CDATA[<p>It&#8217;s in Firefox sometimes a problem. Copy and paste this link: <a href="http://blog.turtlebite.com/wp-content/data/varloader/varloader.zip" rel="nofollow">http://blog.turtlebite.com/wp-content/data/varloader/varloader.zip</a></p>
<p>Cheers,<br />
Christian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian Salzgeber</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1388</link>
		<dc:creator>Sebastian Salzgeber</dc:creator>
		<pubDate>Thu, 22 Sep 2011 23:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1388</guid>
		<description>The Download isnt working. It says &quot;// You cannot download this file&quot;.

Ugh...</description>
		<content:encoded><![CDATA[<p>The Download isnt working. It says &#8220;// You cannot download this file&#8221;.</p>
<p>Ugh&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://blog.turtlebite.com/send-and-load-variables-with-as3-and-php/comment-page-1/#comment-1294</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Wed, 24 Aug 2011 08:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.flashcmsframework.ch/?p=49#comment-1294</guid>
		<description>Try (and/or google) this:
var req:URLRequest = new URLRequest(&quot;http://......&quot;);
navigateToURL(req, &quot;_blank&quot;);
                              
Cheers,
Christian</description>
		<content:encoded><![CDATA[<p>Try (and/or google) this:<br />
var req:URLRequest = new URLRequest(&#8220;http://&#8230;&#8230;&#8221;);<br />
navigateToURL(req, &#8220;_blank&#8221;);</p>
<p>Cheers,<br />
Christian</p>
]]></content:encoded>
	</item>
</channel>
</rss>

