<?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"
	>

<channel>
	<title>Matsiya Technology</title>
	<atom:link href="http://www.matsiya-technology.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matsiya-technology.com</link>
	<description>R &#38; D - Flex / Air</description>
	<pubDate>Tue, 09 Dec 2008 09:28:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>SOFA TICKET #2</title>
		<link>http://www.matsiya-technology.com/sofa-ticket-2/</link>
		<comments>http://www.matsiya-technology.com/sofa-ticket-2/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 09:22:31 +0000</pubDate>
		<dc:creator>Arnaud</dc:creator>
		
		<category><![CDATA[Air]]></category>

		<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=136</guid>
		<description><![CDATA[I am very busy now and sofa is taking some delay so maybe it&#8217;s time for you to give me some feedback about it. If you send me a mail next week i&#8217;ll get you a copy (&#8217;SOFA&#8217; in the subject would be great). It&#8217;s not about finding some hard hidden bugs but more about [...]]]></description>
			<content:encoded><![CDATA[<p>I am very busy now and sofa is taking some delay so maybe it&#8217;s time for you to give me some feedback about it. If you send me a mail next week i&#8217;ll get you a copy (&#8217;SOFA&#8217; in the subject would be great). It&#8217;s not about finding some hard hidden bugs but more about features request and syntax improvement. There&#8217;s still a lots of things to do in it and some of the basics features are missing (like cascade delete) so don&#8217;t expect to find Hibernate 2 !</p>
<p>arnaud AT matsiya.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/sofa-ticket-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SOFA ticket #1</title>
		<link>http://www.matsiya-technology.com/sofa-development-log-1/</link>
		<comments>http://www.matsiya-technology.com/sofa-development-log-1/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 22:06:02 +0000</pubDate>
		<dc:creator>Arnaud</dc:creator>
		
		<category><![CDATA[Non classé]]></category>

		<category><![CDATA[Air]]></category>

		<category><![CDATA[orm]]></category>

		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=129</guid>
		<description><![CDATA[Unlike hibernate or Rails&#8217; ActiveRecord ORM Sofa isn&#8217;t an intrusive framework. Accessing a relational property won&#8217;t get you other things that what you&#8217;ve put into. Currently it&#8217;s possible to populate a property by setting &#8220;auto-fetch=&#8217;on&#8217;&#8221; or by doing a &#8220;fetch Object.property&#8221; in a load request. But we needed a way to do a &#8220;just in [...]]]></description>
			<content:encoded><![CDATA[<p>Unlike hibernate or Rails&#8217; ActiveRecord ORM Sofa isn&#8217;t an intrusive framework. Accessing a relational property won&#8217;t get you other things that what you&#8217;ve put into. Currently it&#8217;s possible to populate a property by setting &#8220;auto-fetch=&#8217;on&#8217;&#8221; or by doing a &#8220;fetch Object.property&#8221; in a load request. But we needed a way to do a &#8220;just in time&#8221; fetching. The best one we&#8217;ve found was to mount an object into the SofaManager so then we could execute a new opertation on it. Here&#8217;s an example :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript actionscript" style="font-family:monospace;"><span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> user:User;
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> sofaManager:SofaManager = SofaSession.<span style="color: #006600;">getSession</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #808080; font-style: italic;">// We load the user with id 1</span>
user = sofaManager.<span style="color: #006600;">createQuery</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;load User where User.id = :id&quot;</span><span style="color: #66cc66;">&#41;</span>
		.<span style="color: #006600;">setIntegerArgument</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;id&quot;</span>, <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>
		.<span style="color: #006600;">execute</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>user.<span style="color: #006600;">pictures</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">// will output null</span>
&nbsp;
<span style="color: #808080; font-style: italic;">//beacause we didn't set auto-fetch to 'on' user.pictures isn't set yet.</span>
<span style="color: #808080; font-style: italic;">//we mount the object and fetch its pictures</span>
&nbsp;
user = sofaManager.<span style="color: #006600;">mount</span><span style="color: #66cc66;">&#40;</span>user<span style="color: #66cc66;">&#41;</span>
		.<span style="color: #006600;">createQuery</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;fetch User.pictures&quot;</span><span style="color: #66cc66;">&#41;</span>
		.<span style="color: #006600;">execute</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>user.<span style="color: #006600;">pictures</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">// will output an ArrayCollection</span></pre></div></div>

<p>This sample code is equivalent to :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript actionscript" style="font-family:monospace;">&nbsp;
user = sofaManager.<span style="color: #006600;">createQuery</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;load User where User.id = :id;&quot;</span><span style="color: #66cc66;">&#41;</span>
		.<span style="color: #006600;">append</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;fetch User.pictures&quot;</span><span style="color: #66cc66;">&#41;</span>
		.<span style="color: #006600;">setIntegerArgument</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;id&quot;</span>, <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>
		.<span style="color: #006600;">execute</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
 </pre></div></div>

<p>SOFA is currently under hard development and we&#8217;re not able to give a release date yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/sofa-development-log-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Matsiya introduces the first AMF API for communication between Flash / Flex and Magento.</title>
		<link>http://www.matsiya-technology.com/matsiya-introduces-the-first-amf-api-for-communication-between-flash-flex-and-magento-2/</link>
		<comments>http://www.matsiya-technology.com/matsiya-introduces-the-first-amf-api-for-communication-between-flash-flex-and-magento-2/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 10:30:33 +0000</pubDate>
		<dc:creator>Arnaud</dc:creator>
		
		<category><![CDATA[Air]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Zend_Amf]]></category>

		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=122</guid>
		<description><![CDATA[
Magento provides a soap/xmlrpc, not bad ! Flex can play with this soap/xmlrpc api , not bad ! But what about perfomances ? Actually we think that amf is the best way for Flex/Flash communication. But one thing was missing : Zend_Amf. With the first release of this pretty good stuff, we jumped on the [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #0000ee; text-decoration: underline;"><img class="alignnone size-full wp-image-101" title="magento-flex-matsiya" src="http://www.matsiya-technology.com/wp-content/uploads/2008/11/magento-flex-matsiya.png" alt="" width="500" height="157" /></span></p>
<p>Magento provides a soap/xmlrpc, not bad ! Flex can play with this soap/xmlrpc api , not bad ! But what about perfomances ? Actually we think that amf is the best way for Flex/Flash communication. But one thing was missing : Zend_Amf. With the first release of this pretty good stuff, we jumped on the opportunity to write an AMF wrapper for the entire magento API. Done ! All the functions defined in your magento installation can now be called in the Flash/Flex environment by a &#8220;just one click&#8221; install of our plugin. More, it automatically translates custom api resources into Amf so there&#8217;s no need in boring configuration files. Interested ? we will post an &#8220;how to&#8221; in the next few days. Stay tuned !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/matsiya-introduces-the-first-amf-api-for-communication-between-flash-flex-and-magento-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Introducing SOFA an Adobe Air ORM for SQlite</title>
		<link>http://www.matsiya-technology.com/introducing-sofa-an-adobe-air-orm-for-sqlite/</link>
		<comments>http://www.matsiya-technology.com/introducing-sofa-an-adobe-air-orm-for-sqlite/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 10:27:06 +0000</pubDate>
		<dc:creator>Arnaud</dc:creator>
		
		<category><![CDATA[Air]]></category>

		<category><![CDATA[orm]]></category>

		<category><![CDATA[sofa]]></category>

		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=118</guid>
		<description><![CDATA[We&#8217;re currently working on an ORM for Air/SQlite, it will be released as an open source project in a few weeks. It has support for nested fetching, cascade saving and deleting, many to many + one to many relationship, inheritance, formulas and more. It&#8217;s not an activerecord pattern, it&#8217;s more like hibernate. By the way, [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re currently working on an ORM for Air/SQlite, it will be released as an open source project in a few weeks. It has support for nested fetching, cascade saving and deleting, many to many + one to many relationship, inheritance, formulas and more. It&#8217;s not an activerecord pattern, it&#8217;s more like hibernate. By the way, it requires some xml configuration files and currently has no support for conventions&#8230; maybe in the next release. Activerecord is a wonderfull pattern but we wanted it to provide nested fetching and cascade saving with a &#8220;no more line&#8221; way. Here is a quick example of the SofaQL :</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript actionscript" style="font-family:monospace;">Family family = sofaManager
  .<span style="color: #006600;">createQuery</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;load Family &lt;=&gt; f where f.id = :id; fetch Family.people&quot;</span><span style="color: #66cc66;">&#41;</span>
  .<span style="color: #006600;">setIntegerArgument</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;id&quot;</span>, <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>
  .<span style="color: #006600;">execute</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>will produce :</p>

<div class="wp_syntax"><div class="code"><pre class="sql sql" style="font-family:monospace;">Handle <span style="color: #993333; font-weight: bold;">LOAD</span> : <span style="color: #993333; font-weight: bold;">LOAD</span> Family
executing :
 <span style="color: #993333; font-weight: bold;">SELECT</span> Family<span style="color: #66cc66;">.</span>ID <span style="color: #993333; font-weight: bold;">AS</span> Family_0_id<span style="color: #66cc66;">,</span> Family<span style="color: #66cc66;">.</span>NAME <span style="color: #993333; font-weight: bold;">AS</span> Family_0_name
 <span style="color: #993333; font-weight: bold;">FROM</span> FAMILY Family
 <span style="color: #993333; font-weight: bold;">WHERE</span> Family<span style="color: #66cc66;">.</span>ID <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">1</span>
fetching : fetch Family<span style="color: #66cc66;">.</span>people
executing :
 <span style="color: #993333; font-weight: bold;">SELECT</span> Person<span style="color: #66cc66;">.</span>ID <span style="color: #993333; font-weight: bold;">AS</span> Person_0_id<span style="color: #66cc66;">,</span> Person<span style="color: #66cc66;">.</span>NAME <span style="color: #993333; font-weight: bold;">AS</span> Person_0_name<span style="color: #66cc66;">,</span>
 Person<span style="color: #66cc66;">.</span>ID <span style="color: #993333; font-weight: bold;">AS</span> Person_0_id<span style="color: #66cc66;">,</span> Person<span style="color: #66cc66;">.</span>FAMILY_ID <span style="color: #993333; font-weight: bold;">AS</span> Person_0_familyId
 <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #66cc66;">&#40;</span> <span style="color: #66cc66;">&#40;</span> People Person <span style="color: #993333; font-weight: bold;">INNER</span> <span style="color: #993333; font-weight: bold;">JOIN</span>  SuperPeople SuperPerson
 <span style="color: #993333; font-weight: bold;">ON</span> SuperPerson<span style="color: #66cc66;">.</span>ID <span style="color: #66cc66;">=</span> Person<span style="color: #66cc66;">.</span>ID <span style="color: #66cc66;">&#41;</span> Person <span style="color: #66cc66;">&#41;</span> Person
 <span style="color: #993333; font-weight: bold;">WHERE</span> Person<span style="color: #66cc66;">.</span>FAMILY_ID <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">1</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="ruby ruby" style="font-family:monospace;">result =
 <span style="color:#006600; font-weight:bold;">&#40;</span>Family<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#008000; font-style:italic;">#0</span>
  id = <span style="color:#006666;">1</span>
  name = <span style="color:#996600;">&quot;pezel&quot;</span>
  people = <span style="color:#006600; font-weight:bold;">&#40;</span>mx.<span style="color:#9900CC;">collections</span>::ArrayCollection<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#008000; font-style:italic;">#1</span>
   filterFunction = <span style="color:#006600; font-weight:bold;">&#40;</span>null<span style="color:#006600; font-weight:bold;">&#41;</span>
   length = <span style="color:#006666;">1</span>
   list = <span style="color:#006600; font-weight:bold;">&#40;</span>mx.<span style="color:#9900CC;">collections</span>::ArrayList<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#008000; font-style:italic;">#2</span>
    length = <span style="color:#006666;">1</span>
    source = <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0066; font-weight:bold;">Array</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#008000; font-style:italic;">#3</span>
     <span style="color:#006600; font-weight:bold;">&#91;</span>0<span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#006600; font-weight:bold;">&#40;</span>Person<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#008000; font-style:italic;">#4</span>
      familyId = <span style="color:#006666;">1</span>
      id = <span style="color:#006666;">1</span>
      name = <span style="color:#996600;">&quot;arnaud&quot;</span>
    uid = <span style="color:#996600;">&quot;A126F4E4-D083-68E2-0F34-723C76CA1A9C&quot;</span>
  sort = <span style="color:#006600; font-weight:bold;">&#40;</span>null<span style="color:#006600; font-weight:bold;">&#41;</span>
  source = <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0066; font-weight:bold;">Array</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#008000; font-style:italic;">#3</span></pre></div></div>

<p>Here Person extends SuperPerson, the last query is a little dirty but it allows to handle n-level inheritance on one to many and many to many relationships.</p>
<p>Oh ! and Sofa means &#8220;Simple orm for air&#8221;. It&#8217;s also the place where this project started.</p>
<p>It&#8217;ll probably be delivered on google code quickly. Stay tuned !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/introducing-sofa-an-adobe-air-orm-for-sqlite/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AMFPHP&#8217;s moving</title>
		<link>http://www.matsiya-technology.com/amfphps-moving/</link>
		<comments>http://www.matsiya-technology.com/amfphps-moving/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 09:32:40 +0000</pubDate>
		<dc:creator>Matsiya</dc:creator>
		
		<category><![CDATA[Others]]></category>

		<category><![CDATA[Zend_Amf]]></category>

		<category><![CDATA[AMFPHP]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=92</guid>
		<description><![CDATA[Wade arnold announced that amfphp&#8217;s core will be rewrited to match the Zend_amf one. More on his blog : http://wadearnold.com/blog/
]]></description>
			<content:encoded><![CDATA[<p>Wade arnold announced that amfphp&#8217;s core will be rewrited to match the Zend_amf one. More on his blog : <a href="http://wadearnold.com/blog/">http://wadearnold.com/blog/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/amfphps-moving/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zend amf + mixed array</title>
		<link>http://www.matsiya-technology.com/zend-amf-mixed-array/</link>
		<comments>http://www.matsiya-technology.com/zend-amf-mixed-array/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 20:56:04 +0000</pubDate>
		<dc:creator>Matsiya</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Zend_Amf]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=73</guid>
		<description><![CDATA[Zend_amf has a different way to handle arrays than AMFPHP, mixed array are always sent to flex as Array. With AMFPHP when an array is serialized a difference is made between simple array with numeric keys and the other ones. Array with string keys are returned as generic object (class Object). Wade Arnold told us [...]]]></description>
			<content:encoded><![CDATA[<p>Zend_amf has a different way to handle arrays than AMFPHP, mixed array are always sent to flex as Array. With AMFPHP when an array is serialized a difference is made between simple array with numeric keys and the other ones. Array with string keys are returned as generic object (class Object). <a href="http://wadearnold.com/blog/" target="_blank">Wade Arnold</a> told us by mail that it&#8217;s a normal behavior, indeed in AS3 mixed array are now supported so returning array seems to be the good way. Actually arrays with string keys are not really flex friendly. More, some components won&#8217;t treat it if setted in their dataProvider. Fortunatly a simple cast on the php side should do the work. More on Wade&#8217;s blog.</p>
<p><a title="zendamf" href="http://wadearnold.com/blog/" target="_blank">http://wadearnold.com/blog/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/zend-amf-mixed-array/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Something’s Happening…</title>
		<link>http://www.matsiya-technology.com/something%e2%80%99s-happening%e2%80%a6/</link>
		<comments>http://www.matsiya-technology.com/something%e2%80%99s-happening%e2%80%a6/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 20:02:28 +0000</pubDate>
		<dc:creator>Matsiya</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Zend_Amf]]></category>

		<category><![CDATA[e-commerce]]></category>

		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=12</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-17 aligncenter" title="developpement-flex-magento-matsiya1" src="http://www.matsiya-technology.com/wp-content/uploads/2008/10/developpement-flex-magento-matsiya1.png" alt="" width="387" height="238" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/something%e2%80%99s-happening%e2%80%a6/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash Player 10&#8230;GO !!</title>
		<link>http://www.matsiya-technology.com/flash-player-10go/</link>
		<comments>http://www.matsiya-technology.com/flash-player-10go/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 12:43:17 +0000</pubDate>
		<dc:creator>Matsiya</dc:creator>
		
		<category><![CDATA[Adobe]]></category>

		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=26</guid>
		<description><![CDATA[We awaited it impatiently, it arrived !! Flash Player is a big release !
http://www.adobe.com/products/flashplayer/
Top features :
* 3D effects
* Custom filters and effects
* Advanced text support
* Dynamic sound generation
* Drawing API
* Hardware acceleration
* Vector data type
* Dynamic Streaming
* Speex audio codec
* File upload and download APIs
More informations :
 http://www.adobe.com/products/flashplayer/features/?promoid=DXLUF
thanks Adobe !!
]]></description>
			<content:encoded><![CDATA[<p>We awaited it impatiently, it arrived !! Flash Player is a big release !</p>
<p><a title="Flash player" href="http://www.adobe.com/products/flashplayer/" target="_blank">http://www.adobe.com/products/flashplayer/</a></p>
<p><strong>Top features :</strong></p>
<p>* 3D effects<br />
* Custom filters and effects<br />
* Advanced text support<br />
* Dynamic sound generation<br />
* Drawing API<br />
* Hardware acceleration<br />
* Vector data type<br />
* Dynamic Streaming<br />
* Speex audio codec<br />
* File upload and download APIs</p>
<p><strong>More informations :</strong><br />
<a href="http://www.adobe.com/products/flashplayer/features/?promoid=DXLUF" target="_blank"> http://www.adobe.com/products/flashplayer/features/?promoid=DXLUF</a><br />
thanks Adobe !!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/flash-player-10go/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Flex 4 - Ryan Stewart and Matt Chotin</title>
		<link>http://www.matsiya-technology.com/adobe-flex-4-ryan-stewart-and-matt-chotin/</link>
		<comments>http://www.matsiya-technology.com/adobe-flex-4-ryan-stewart-and-matt-chotin/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 18:41:40 +0000</pubDate>
		<dc:creator>Matsiya</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Adobe]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=8</guid>
		<description><![CDATA[Ryan Stewart starting a new show on Adobe TV called Tech Talk with Ryan Stewart. In his first episode he chat with Matt Chotin about new features in Flex 4 &#8230;

]]></description>
			<content:encoded><![CDATA[<p>Ryan Stewart starting a new show on Adobe TV called <a href="http://tv.adobe.com/#pg+1579">Tech Talk with Ryan Stewart</a>. In his first episode he chat with <a href="http://weblogs.macromedia.com/mchotin/">Matt Chotin</a> about new features in Flex 4 &#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="AdobeTVPlayer" /><param name="bgcolor" value="#000000" /><param name="flashvars" value="v=~b64~aHR0cDovL2Fkb2JlLmVkZ2Vib3NzLm5ldC9mbGFzaC9hZG9iZS9hZG9iZXR2Mi90ZWNoX3RhbGtfd2l0aF9yeWFuX3N0ZXdhcnQvMTAyX3R0cl8wMDEuZmx2P3Jzc19mZWVkaWQ9MTU3OSZ4bWx2ZXJzPTI=&amp;w=480&amp;h=300" /><param name="src" value="http://tv.adobe.com/Embed.swf" /><embed type="application/x-shockwave-flash" width="480" height="300" src="http://tv.adobe.com/Embed.swf" flashvars="v=~b64~aHR0cDovL2Fkb2JlLmVkZ2Vib3NzLm5ldC9mbGFzaC9hZG9iZS9hZG9iZXR2Mi90ZWNoX3RhbGtfd2l0aF9yeWFuX3N0ZXdhcnQvMTAyX3R0cl8wMDEuZmx2P3Jzc19mZWVkaWQ9MTU3OSZ4bWx2ZXJzPTI=&amp;w=480&amp;h=300" bgcolor="#000000" name="AdobeTVPlayer"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/adobe-flex-4-ryan-stewart-and-matt-chotin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Air with Acrobat Reader 9</title>
		<link>http://www.matsiya-technology.com/adobe-air-with-acrobat-reader-9/</link>
		<comments>http://www.matsiya-technology.com/adobe-air-with-acrobat-reader-9/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 20:32:30 +0000</pubDate>
		<dc:creator>Matsiya</dc:creator>
		
		<category><![CDATA[Air]]></category>

		<guid isPermaLink="false">http://www.matsiya-technology.com/?p=70</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank"><img class="aligncenter size-full wp-image-71" title="Adobe Air" src="http://www.matsiya-technology.com/wp-content/uploads/2008/10/image_6.png" alt="" width="459" height="159"  border="0"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matsiya-technology.com/adobe-air-with-acrobat-reader-9/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

