<?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"
	>
<channel>
	<title>Comments on: SWX RPC for Flash Lite (Mobile)</title>
	<atom:link href="http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/feed" rel="self" type="application/rss+xml" />
	<link>http://swxformat.org</link>
	<description>SWX is the native data format for Adobe Flash. This blog is about all things SWX, SWX RPC, SWX PHP and the SWX APIs (Flickr, Twitter, etc.)</description>
	<pubDate>Thu, 28 Aug 2008 11:36:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: akhil</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-12194</link>
		<dc:creator>akhil</dc:creator>
		<pubDate>Thu, 10 Apr 2008 04:49:12 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-12194</guid>
		<description>hi aral i tried this code but it still is not working....


import org.swxformat.SWX;

var swx:SWX = new SWX();
swx.gateway = "http://localhost:3004/swx";
swx.encoding = "GET";

var callParameters:Object =
{
    serviceClass: "Flickr",
    method: "swxPhotosGetRecent",
    args: ["small", "", 1],
    result: [this, resultHandler]
}

swx.call(callParameters);

function resultHandler(event:Object):Void
{
    image.loadMovie(event.result.photo[0].src);
}</description>
		<content:encoded><![CDATA[<p>hi aral i tried this code but it still is not working&#8230;.</p>
<p>import org.swxformat.SWX;</p>
<p>var swx:SWX = new SWX();<br />
swx.gateway = &#8220;http://localhost:3004/swx&#8221;;<br />
swx.encoding = &#8220;GET&#8221;;</p>
<p>var callParameters:Object =<br />
{<br />
    serviceClass: &#8220;Flickr&#8221;,<br />
    method: &#8220;swxPhotosGetRecent&#8221;,<br />
    args: ["small", "", 1],<br />
    result: [this, resultHandler]<br />
}</p>
<p>swx.call(callParameters);</p>
<p>function resultHandler(event:Object):Void<br />
{<br />
    image.loadMovie(event.result.photo[0].src);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raj</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-8063</link>
		<dc:creator>raj</dc:creator>
		<pubDate>Wed, 05 Mar 2008 09:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-8063</guid>
		<description>hi ,
could you please explain any very simple example to use on native flash.. to understand the concept. and the vital parts to start with. i have seen your getting started but still i didnt get it...</description>
		<content:encoded><![CDATA[<p>hi ,<br />
could you please explain any very simple example to use on native flash.. to understand the concept. and the vital parts to start with. i have seen your getting started but still i didnt get it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aral</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-1782</link>
		<dc:creator>aral</dc:creator>
		<pubDate>Fri, 12 Oct 2007 12:51:50 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-1782</guid>
		<description>Hi Amit, 

I would use the SWX ActionScript Library and create an application with that. 

For example, download the SWX AsLib and unzip it somewhere. Then, in that folder, create a FlashLite 2.0 or 2.1 FLA. On the Stage, create an empty movie clip and give it the instance name imageHolder.

On the first frame, create an Actions layer and type the following into it:

&lt;pre lang="actionscript"&gt;import org.swxformat.SWX;

var swx:SWX = new SWX();
swx.gateway = "http://localhost:3004/swx";
swx.encoding = "GET";

var callParameters:Object = 
{
    serviceClass: "Flickr",
    method: "swxPhotosGetRecent",
    args: ["small", "", 1],
    result: [this, resultHandler]
}

swx.call(callParameters);

function resultHandler(event:Object):Void
{
    image.loadMovie(event.result.photo[0].src);
}&lt;/pre&gt;

Test the movie and, in Device Central, you should see the latest photograph from Flickr.

Hopefully, that should get you started!</description>
		<content:encoded><![CDATA[<p>Hi Amit, </p>
<p>I would use the SWX ActionScript Library and create an application with that. </p>
<p>For example, download the SWX AsLib and unzip it somewhere. Then, in that folder, create a FlashLite 2.0 or 2.1 FLA. On the Stage, create an empty movie clip and give it the instance name imageHolder.</p>
<p>On the first frame, create an Actions layer and type the following into it:</p>
<pre lang="actionscript">import org.swxformat.SWX;

var swx:SWX = new SWX();
swx.gateway = "http://localhost:3004/swx";
swx.encoding = "GET";

var callParameters:Object =
{
    serviceClass: "Flickr",
    method: "swxPhotosGetRecent",
    args: ["small", "", 1],
    result: [this, resultHandler]
}

swx.call(callParameters);

function resultHandler(event:Object):Void
{
    image.loadMovie(event.result.photo[0].src);
}</pre>
<p>Test the movie and, in Device Central, you should see the latest photograph from Flickr.</p>
<p>Hopefully, that should get you started!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-1714</link>
		<dc:creator>Amit</dc:creator>
		<pubDate>Wed, 10 Oct 2007 15:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-1714</guid>
		<description>Hi,

I want to develope an application/game in flashlite 2.0 using swx...but how should i proceed for that??</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I want to develope an application/game in flashlite 2.0 using swx&#8230;but how should i proceed for that??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aral</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-1436</link>
		<dc:creator>aral</dc:creator>
		<pubDate>Sat, 22 Sep 2007 01:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-1436</guid>
		<description>@Glenn: More tutorials and screencasts are on the way... I just need to convert/upload them. Being on the road isn't helping!

@Stefan: That's cool, do let me know how you get on and feel free to submit your work to the SWX Showcase! :)</description>
		<content:encoded><![CDATA[<p>@Glenn: More tutorials and screencasts are on the way&#8230; I just need to convert/upload them. Being on the road isn&#8217;t helping!</p>
<p>@Stefan: That&#8217;s cool, do let me know how you get on and feel free to submit your work to the SWX Showcase! <img src='http://swxformat.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Wessels</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-1417</link>
		<dc:creator>Stefan Wessels</dc:creator>
		<pubDate>Wed, 19 Sep 2007 12:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-1417</guid>
		<description>Hi Aral!

We finally have some time to do our own stuff, going to get SWX up and running now, very excited to play with it!

Stefan</description>
		<content:encoded><![CDATA[<p>Hi Aral!</p>
<p>We finally have some time to do our own stuff, going to get SWX up and running now, very excited to play with it!</p>
<p>Stefan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: biskero.org</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-1402</link>
		<dc:creator>biskero.org</dc:creator>
		<pubDate>Tue, 18 Sep 2007 13:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-1402</guid>
		<description>[...] should look at are the capabilities of this framework for Flash Lite 2.x development. Here is an introduction from SWX [...]</description>
		<content:encoded><![CDATA[<p>[...] should look at are the capabilities of this framework for Flash Lite 2.x development. Here is an introduction from SWX [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: glenn</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-1367</link>
		<dc:creator>glenn</dc:creator>
		<pubDate>Sat, 15 Sep 2007 21:05:50 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-1367</guid>
		<description>Aral you have done a nice job :)
i hope really that you come up whit
some good starting tutorials and more
examples cus i find it still hard to
develop my own application.
More video tutorials would be nice :P</description>
		<content:encoded><![CDATA[<p>Aral you have done a nice job <img src='http://swxformat.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
i hope really that you come up whit<br />
some good starting tutorials and more<br />
examples cus i find it still hard to<br />
develop my own application.<br />
More video tutorials would be nice <img src='http://swxformat.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aral</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-1308</link>
		<dc:creator>aral</dc:creator>
		<pubDate>Tue, 11 Sep 2007 19:30:17 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-1308</guid>
		<description>Hi Ribot, 

It's in the SWX ActionScript Library and SWX PHP/SWX PHP MAMP Bundle releases. Have fun and do let me know how it goes! :)</description>
		<content:encoded><![CDATA[<p>Hi Ribot, </p>
<p>It&#8217;s in the SWX ActionScript Library and SWX PHP/SWX PHP MAMP Bundle releases. Have fun and do let me know how it goes! <img src='http://swxformat.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RIBOTMINIMUS</title>
		<link>http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile#comment-1286</link>
		<dc:creator>RIBOTMINIMUS</dc:creator>
		<pubDate>Sat, 08 Sep 2007 19:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://swxformat.org/documentation/swx-rpc-for-flash-lite-mobile/#comment-1286</guid>
		<description>maybe i'll just dl SWX PHP..</description>
		<content:encoded><![CDATA[<p>maybe i&#8217;ll just dl SWX PHP..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
