<?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>Wade Arnold &#187; Uncategorized</title>
	<atom:link href="http://wadearnold.com/blog/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://wadearnold.com/blog</link>
	<description>The spoils of the integration of PHP and ActionScript</description>
	<lastBuildDate>Thu, 04 Feb 2010 15:17:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple RemoteObject example in Flex 4 Gumbo</title>
		<link>http://wadearnold.com/blog/uncategorized/simple-remoteobject-example-in-flex-4-gumbo</link>
		<comments>http://wadearnold.com/blog/uncategorized/simple-remoteobject-example-in-flex-4-gumbo#comments</comments>
		<pubDate>Sun, 23 Nov 2008 05:05:37 +0000</pubDate>
		<dc:creator>wadearnold</dc:creator>
				<category><![CDATA[AMFPHP]]></category>
		<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Zend_Amf]]></category>

		<guid isPermaLink="false">http://wadearnold.com/blog/?p=143</guid>
		<description><![CDATA[If you just received a copy of Flex 4 Gumbo like me you may have some issues getting something simple started. The following code shows how to make a simple remoteobject call inside flex builder 4. A couple gotchas that fooled me. First notice that you have to wrap your remoteobject call inside of the [...]]]></description>
			<content:encoded><![CDATA[<p>If you just received a copy of Flex 4 Gumbo like me you may have some issues getting something simple started. The following code shows how to make a simple remoteobject call inside flex builder 4. A couple gotchas that fooled me. First notice that you have to wrap your remoteobject call inside of the new declarations tag. Second you should notice that the MX namespace has been dropped for all components. This too took me a bit! </p>
<p>Check out the <a href="http://www.screencast.com/users/wadearnold/folders/Jing/media/9ae9eeb3-1f52-4bfa-b93c-526074d76109">ScreenCast </a>and of course the code</p>
<pre lang="actionscript">
<?xml version="1.0" encoding="utf-8"?>
<Application xmlns="http://ns.adobe.com/mxml/2009">
    <Declarations>
        <RemoteObject endpoint="http://localhost:8888/" id="myservice" fault="faultHandler(event)"
        	source="HelloWorld" destination="zend">
        	<method name="say" result="responseHandler(event)" />
        </RemoteObject>
    </Declarations>
    <Script>
    	<![CDATA[
    		import mx.rpc.events.FaultEvent;
    		import mx.rpc.events.ResultEvent;

    		/**
    		 * Make the call to the server
    		 */
    		public function sendHello():void {
    			myservice.say(input.text);
    		}

    		/**
    		 * Handle the successfull result from the remoting call
    		 */
    		private function responseHandler(event:ResultEvent):void {
    			result.text = event.result.toString();
    		}

    		/**
    		 * Handle the failed remoting call
    		 */
    		private function faultHandler(event:FaultEvent):void {
    			result.text = event.message.toString();
    		}
    	]]&gt;
    </Script>

    <VGroup horizontalCenter="0" verticalCenter="0">
    	<TextInput id="input" text="I like coffee"/>
        <Button id="btn" click="sendHello()" label="Send" />
        <TextArea id="result"/>
    </VGroup>

</Application>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://wadearnold.com/blog/uncategorized/simple-remoteobject-example-in-flex-4-gumbo/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zend AMF at Adobe MAX &#8216;08</title>
		<link>http://wadearnold.com/blog/uncategorized/zend-amf-at-adobe-max-08</link>
		<comments>http://wadearnold.com/blog/uncategorized/zend-amf-at-adobe-max-08#comments</comments>
		<pubDate>Thu, 20 Nov 2008 20:27:26 +0000</pubDate>
		<dc:creator>wadearnold</dc:creator>
				<category><![CDATA[AMFPHP]]></category>
		<category><![CDATA[Flash Platform]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Zend_Amf]]></category>

		<guid isPermaLink="false">http://wadearnold.com/blog/?p=127</guid>
		<description><![CDATA[The Zend Framework 1.7 was released Monday just in time for the buzz to hit Adobe Max. The following are cool things that I experienced with the project at MAX 08!
Tim Buntel gave the Keynote on the second day of Adobe MAX and mentioned the Zend Amf in the keynote. This was pretty cool!

 
The Zend [...]]]></description>
			<content:encoded><![CDATA[<p>The Zend Framework 1.7 was released Monday just in time for the buzz to hit Adobe Max. The following are cool things that I experienced with the project at MAX 08!</p>
<p><a href="http://www.buntel.com/blog/">Tim Buntel</a> gave the Keynote on the second day of Adobe MAX and mentioned the Zend Amf in the keynote. This was pretty cool!</p>
<p><a href="http://wadearnold.com/blog/wp-content/uploads/2008/11/img_0038.jpg"><img class="alignnone size-medium wp-image-128" title="img_0038" src="http://wadearnold.com/blog/wp-content/uploads/2008/11/img_0038-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p> </p>
<p>The Zend booth seemed to have a lot of traffic and if there is anyway i can get a copy of this sign i want to hang it in my office. </p>
<p><a href="http://wadearnold.com/blog/wp-content/uploads/2008/11/zend_banner.jpg"><img class="aligncenter size-medium wp-image-138" title="zend_banner" src="http://wadearnold.com/blog/wp-content/uploads/2008/11/zend_banner-225x300.jpg" alt="" width="225" height="300" /></a><a href="http://wadearnold.com/blog/wp-content/uploads/2008/11/zend_booth.jpg"><img class="aligncenter size-medium wp-image-139" title="zend_booth" src="http://wadearnold.com/blog/wp-content/uploads/2008/11/zend_booth-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p> </p>
<p>The Adobe Booth had these flyers laying around that talked about the integration.</p>
<p><a href="http://wadearnold.com/blog/wp-content/uploads/2008/11/zend_onesheet.jpg"><img class="aligncenter size-medium wp-image-135" title="zend_onesheet" src="http://wadearnold.com/blog/wp-content/uploads/2008/11/zend_onesheet-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p><a href="http://blog.garthdb.com/2008/11/cairngorm-and-zend-amf-360max/">Garth Braithwaite</a> gave a presentation at 360|MAX about using Zend Amf in an application. Sorry garth we are not going to change the name the ZAMF.</p>
<p><a href="http://wadearnold.com/blog/wp-content/uploads/2008/11/img_0057.jpg"><img class="aligncenter size-medium wp-image-131" title="Garth" src="http://wadearnold.com/blog/wp-content/uploads/2008/11/img_0057-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://www.jamesward.com/wordpress/">James Ward</a> and I had a little chat without cowboy hats! He was looking pretty metro sexual for being the RIA cowboy! We are going to try and get <a href="http://www.jamesward.com/wordpress/2007/04/30/ajax-and-flex-data-loading-benchmarks/">census</a> updated to compare Zend Amf vs java. Ohh that&#8217;s going to trigger some work on AMFEXT! </p>
<p><a href="http://wadearnold.com/blog/wp-content/uploads/2008/11/ria_cowboy.jpg"><img class="aligncenter size-medium wp-image-137" title="ria_cowboy" src="http://wadearnold.com/blog/wp-content/uploads/2008/11/ria_cowboy-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p> </p>
<p>The Zend Framework website updated announcing the 1.7 release and I love the Adobe advertisement! </p>
<p><a href="http://wadearnold.com/blog/wp-content/uploads/2008/11/picture-3.png"><img class="aligncenter size-medium wp-image-140" title="Zend Framework website" src="http://wadearnold.com/blog/wp-content/uploads/2008/11/picture-3-300x252.png" alt="" width="300" height="252" /></a></p>
<p>I also got to talk with the Flex Builder team about getting better integration of PHP data services into Flex. I hope those talks go somewhere!</p>
]]></content:encoded>
			<wfw:commentRss>http://wadearnold.com/blog/uncategorized/zend-amf-at-adobe-max-08/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
