<?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>tEXtOO.NEt</title>
	<atom:link href="http://blog.textoo.net/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.textoo.net</link>
	<description></description>
	<lastBuildDate>Sun, 11 Jul 2010 09:27:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SmoothImage, a smooth Image for Flex</title>
		<link>http://blog.textoo.net/en/code/smoothimage-une-image-lissee-pour-flex/</link>
		<comments>http://blog.textoo.net/en/code/smoothimage-une-image-lissee-pour-flex/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 13:40:03 +0000</pubDate>
		<dc:creator>Tex</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://blog.textoo.net/?p=237</guid>
		<description><![CDATA[Something that could be very frustrating for a Flex developer is the Image component.
In AS3 you can simply smooth an image when resized, in Flex you can&#8217;t : this feature was not added to the component, so when the Image is resized it gets pixelated.
This is even more frustrating when you know that the component [...]]]></description>
			<content:encoded><![CDATA[<p>Something that could be very frustrating for a Flex developer is the Image component.</p>
<p>In AS3 you can simply smooth an image when resized, in Flex you can&#8217;t : this feature was not added to the component, so when the Image is resized it gets pixelated.</p>
<p>This is even more frustrating when you know that the component share the same low level class than the AS3 equivalent.</p>
<p>There&#8217;s a solution : extend the component to access the bitmap and activate smoothing while initialization (component init for Embeded images and loading end for loaded ones).</p>
<p>For my own needs, i have done the following &#8220;SmoothImage&#8221; component using this solution :</p>
<pre>
<pre name="code" class="actionscript">

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Image xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; init=&quot;updateSmoothState()&quot; initialize=&quot;updateSmoothState()&quot;&gt;
	&lt;mx:Script&gt;
		&lt;![CDATA[
			private function updateSmoothState():void{

				if (this.content is Bitmap){

					var btmp:Bitmap = this.content as Bitmap;

					if (btmp &amp;&amp; !btmp.smoothing){

						btmp.smoothing = true;
					}
				}
			}
		]]&gt;
	&lt;/mx:Script&gt;
&lt;/mx:Image&gt;
</pre>
</pre>
<p>And voila, this is a present.</p>
<p>For your convenience i have built a SWC that you just have to put in your Flex project&#8217;s &#8220;libs&#8221; folder to get a new &#8220;SmoothImage&#8221; component.</p>
<p>It works exactly like &#8220;Image&#8221; &#8230; with smoothing.</p>
<p>
<a title="SmoothImage"  href="http://code.google.com/p/smoothimage" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/code.google.com/p/smoothimage');" >SWC and source code are available on Google code</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.textoo.net/en/code/smoothimage-une-image-lissee-pour-flex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ActionScript 3 reference guide for iPhone</title>
		<link>http://blog.textoo.net/en/code/reference-actionscript-3-pour-iphone/</link>
		<comments>http://blog.textoo.net/en/code/reference-actionscript-3-pour-iphone/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 22:06:13 +0000</pubDate>
		<dc:creator>Tex</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.textoo.net/?p=212</guid>
		<description><![CDATA[This is a nice present that 
Mike Chambers has given to the 
Flex/
Flash/
Air devs that owns an iPhone.

A great application that brings the full ActionScript 3 reference on the Apple smartphone.
Simple and fast to use, this is a must have for all.

more infos and link to iTunes here.


]]></description>
			<content:encoded><![CDATA[<p>This is a nice present that 
<a  href="http://www.mikechambers.com/blog/2009/01/26/actionscript-3-reference-for-iphone/" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.mikechambers.com/blog/2009/01/26/actionscript-3-reference-for-iphone/');" >Mike Chambers</a> has given to the 
<a  href="http://www.adobe.com/go/flex" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.adobe.com/go/flex');" >Flex</a>/
<a  href="http://www.adobe.com/go/flash" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.adobe.com/go/flash');" >Flash</a>/
<a  href="http://www.adobe.com/go/air" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.adobe.com/go/air');" >Air</a> devs that owns an iPhone.</p>
<p>
<a  href="http://www.mikechambers.com/as3iphone/" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.mikechambers.com/as3iphone/');" >A great application</a> that brings the full ActionScript 3 reference on the Apple smartphone.</p>
<p>Simple and fast to use, this is a must have for all.</p>
<p>
<a  href="http://www.mikechambers.com/as3iphone/" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.mikechambers.com/as3iphone/');" >more infos and link to iTunes here.</a></p>
<p style="text-align: center;">
<a  href="http://www.flickr.com/photos/mikechambers/3211005514/in/photostream/" onclick="javascript:pageTracker._trackPageview('/external/www.flickr.com/photos/mikechambers/3211005514/in/photostream/');" ><img class="aligncenter" src="http://farm4.static.flickr.com/3117/3211005514_b1330673a1.jpg?v=0" alt="" width="480" height="320" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.textoo.net/en/code/reference-actionscript-3-pour-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Black Water</title>
		<link>http://blog.textoo.net/en/photos/black-water/</link>
		<comments>http://blog.textoo.net/en/photos/black-water/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 08:11:08 +0000</pubDate>
		<dc:creator>Tex</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://blog.textoo.net/?p=181</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<a  href="http://www.flickr.com/photos/textoo/305835705/" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.flickr.com/photos/textoo/305835705/');" ><img class="aligncenter" title="Black Water" src="http://farm1.static.flickr.com/109/305835705_4d99b974d1.jpg" alt="" width="500" height="333" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.textoo.net/en/photos/black-water/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Statuzer, yet another twitter air application</title>
		<link>http://blog.textoo.net/en/code/statuzer-encore-une-application-air-pour-twitter/</link>
		<comments>http://blog.textoo.net/en/code/statuzer-encore-une-application-air-pour-twitter/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 16:44:56 +0000</pubDate>
		<dc:creator>Tex</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Statuzer]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://blog.textoo.net/?p=170</guid>
		<description><![CDATA[Yes i know, there are plenty of twitter clients, but i didn&#8217;t resist to make a new one.
Because i have good reasons :

At this time i love 
Twitter, kind of a passion, this service is great.
i&#8217;d like to test 
Air development.
didn&#8217;t found (not realy searched) a client that makes  &#8220;tweet-tweet&#8221; when receiving updates.
i&#8217;d like to [...]]]></description>
			<content:encoded><![CDATA[<p>Yes i know, there are plenty of twitter clients, but i didn&#8217;t resist to make a new one.</p>
<p>Because i have good reasons :</p>
<ol>
<li>At this time i love 
<a  href="http://twitter.com" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/twitter.com');" >Twitter</a>, kind of a passion, this service is great.</li>
<li>i&#8217;d like to test 
<a  href="http://get.adobe.com/air" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/get.adobe.com/air');" >Air</a> development.</li>
<li>didn&#8217;t found (not realy searched) a client that makes  &#8220;tweet-tweet&#8221; when receiving updates.</li>
<li>i&#8217;d like to group my contacts and 
<a  href="http://www.tweetdeck.com/" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.tweetdeck.com/');" >TweetDeck</a> was to big on my screen.</li>
<li>love to add some cool features (webcam upload,URLs preview).</li>
</ol>
<p>And of course, i&#8217;d like to rule the world, Mouhahahah &#8230;</p>
<p>get it here : 
<a title="Statuzer, multi-platform Twitter Client"  href="http://www.statuzer.com/" onclick="javascript:pageTracker._trackPageview('/external/www.statuzer.com/');" >Statuzer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.textoo.net/en/code/statuzer-encore-une-application-air-pour-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new world</title>
		<link>http://blog.textoo.net/en/photos/un-nouveau-monde/</link>
		<comments>http://blog.textoo.net/en/photos/un-nouveau-monde/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 22:30:03 +0000</pubDate>
		<dc:creator>Tex</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://blog.textoo.net/?p=157</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">
<a  href="http://www.flickr.com/photos/textoo/3081125358/" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.flickr.com/photos/textoo/3081125358/');" ><img class="aligncenter" title="CloudsPickers" src="http://farm4.static.flickr.com/3063/3081125358_82b4ff2800_o.jpg" alt="" width="533" height="800" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.textoo.net/en/photos/un-nouveau-monde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At night, all cats are grey</title>
		<link>http://blog.textoo.net/en/photos/la-nuit-tous-les-chats-sont-gris/</link>
		<comments>http://blog.textoo.net/en/photos/la-nuit-tous-les-chats-sont-gris/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 22:57:54 +0000</pubDate>
		<dc:creator>Tex</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://blog.textoo.net/?p=124</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p><p style="text-align: center;">
<a  href="http://www.flickr.com/photos/textoo/3081125678/" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/www.flickr.com/photos/textoo/3081125678/');" ><img class="aligncenter" src="http://farm4.static.flickr.com/3140/3081125678_51719fb002.jpg" alt="" width="500" height="333" /></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.textoo.net/en/photos/la-nuit-tous-les-chats-sont-gris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
