<?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>Nuno Mira - Flash Developer</title>
	<atom:link href="http://www.nunomira.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nunomira.com/blog</link>
	<description>Nuno Mira&#039;s Flash Blog</description>
	<lastBuildDate>Fri, 05 Feb 2010 17:42:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Apply and Remove tint to an Object in AS3</title>
		<link>http://www.nunomira.com/blog/2009/11/apply-and-remove-tint-to-an-object-in-as3/</link>
		<comments>http://www.nunomira.com/blog/2009/11/apply-and-remove-tint-to-an-object-in-as3/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 16:24:20 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=375</guid>
		<description><![CDATA[<p>If you want to tint an object and then revert to its original color, you can use setTint() passing 0 in the second parameter, e.g.:</p>
PLAIN TEXT
Actionscript:




c.setTint &#40;0xFF0000, 0&#41;; 





<p>
</p>
PLAIN TEXT
Actionscript:




import fl.motion.Color;


&#160;


var square:Sprite = new Sprite&#40;&#41;;


square.graphics.beginFill&#40;0x000000&#41;;


square.graphics.drawRect&#40;100, 100, 100, 100&#41;;


&#160;


addChild&#40;square&#41;;


&#160;


square.addEventListener&#40;MouseEvent.MOUSE_OVER, onMouseOver&#41;;


square.addEventListener&#40;MouseEvent.MOUSE_OUT, onMouseOut&#41;;


&#160;


function onMouseOver &#40;e:MouseEvent&#41;:void


&#123;


&#160; &#160; var c:Color = new Color&#40;&#41;;


&#160; &#160; c.setTint &#40;0x929218, 1&#41;;


&#160;


&#160; &#160; square.transform.colorTransform = [...]]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2009/11/apply-and-remove-tint-to-an-object-in-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>convert Decimal to Hex and back</title>
		<link>http://www.nunomira.com/blog/2009/11/convert-decimal-to-hex-and-back/</link>
		<comments>http://www.nunomira.com/blog/2009/11/convert-decimal-to-hex-and-back/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 16:49:40 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
				<category><![CDATA[ActionScript]]></category>

		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=370</guid>
		<description><![CDATA[<p>In Flash (AS3), when you store a colour in a variable, although the 0x specifies an hexadecimal value, the variable will be of type uint (unsigned integer).</p>
PLAIN TEXT
Actionscript:




var c:uint = 0xFFFFFF; 





<p>
This means that Flash, internally, converts the hexadecimal value to decimal.
You can easily verify this by tracing this variable's value:</p>
PLAIN TEXT
Actionscript:




trace &#40;c&#41;; // 16777215 [...]]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2009/11/convert-decimal-to-hex-and-back/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New address for amfphp: amf-php.org</title>
		<link>http://www.nunomira.com/blog/2007/05/new-address-for-amfphp-amf-phporg/</link>
		<comments>http://www.nunomira.com/blog/2007/05/new-address-for-amfphp-amf-phporg/#comments</comments>
		<pubDate>Wed, 16 May 2007 17:03:53 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
		
		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=340</guid>
		<description><![CDATA[<p>Due to a lot of confusing circunstances the old domain amfphp.org expired and can't be renewed, or at least it's not very likely that it will be anytime soon.</p>
<p>The good news is that there's a new amfphp - Flash remoting for PHP address: amf-php.org.</p>
<p>So, go to the new amfphp site and spread the word.</p>
]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2007/05/new-address-for-amfphp-amf-phporg/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adobe CS3 Installation Problems</title>
		<link>http://www.nunomira.com/blog/2007/05/adobe-cs3-installation-problems/</link>
		<comments>http://www.nunomira.com/blog/2007/05/adobe-cs3-installation-problems/#comments</comments>
		<pubDate>Wed, 09 May 2007 22:31:30 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
		
		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=339</guid>
		<description><![CDATA[<p>Although the installation on my new notebook went smoothly, I didn't have the same luck with my desktop.</p>
<p>The installation took forever and in the end I got a error message regarding missing components.
I tried it over and over, searched the web, read and tried everything I could find.
The Creative Suite 3 cleanup script was no [...]]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2007/05/adobe-cs3-installation-problems/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Adobe CS3 Trials available</title>
		<link>http://www.nunomira.com/blog/2007/05/adobe-cs3-trials-available/</link>
		<comments>http://www.nunomira.com/blog/2007/05/adobe-cs3-trials-available/#comments</comments>
		<pubDate>Wed, 09 May 2007 11:11:00 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
		
		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=338</guid>
		<description><![CDATA[<p>The Adobe Creative Suite 3 Trials are finally available for download.</p>
<p>Get them now!</p>
]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2007/05/adobe-cs3-trials-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>_root, Evil _root</title>
		<link>http://www.nunomira.com/blog/2007/04/_root-evil-_root/</link>
		<comments>http://www.nunomira.com/blog/2007/04/_root-evil-_root/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 19:19:27 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
		
		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=337</guid>
		<description><![CDATA[<p>As soon as you start writing your first lines of code in ActionScript, it's pretty likely that you'll use _root.</p>
<p>_root is an identifier that references the main timeline of your movie.</p>
<p>When you use _root, you're using absolute notation.</p>
<p></p>
<p>If you have a movie clip on the stage called my_mc, you can attach code like this to [...]]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2007/04/_root-evil-_root/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash Mail Form (with PHP)</title>
		<link>http://www.nunomira.com/blog/2007/04/flash-mail-form-with-php/</link>
		<comments>http://www.nunomira.com/blog/2007/04/flash-mail-form-with-php/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 16:57:50 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=336</guid>
		<description><![CDATA[<p>So you want to create a mail form in Flash...</p>
<p>You need:</p>


    a PHP enabled server
  

    basic understanding of Flash / ActionScript
  

    very basic PHP knowledge
  

    Flash MX or later
  

<p>Creating a Flash Mail Form should be [...]]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2007/04/flash-mail-form-with-php/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Thunderbird 2 Released</title>
		<link>http://www.nunomira.com/blog/2007/04/thunderbird-2-released/</link>
		<comments>http://www.nunomira.com/blog/2007/04/thunderbird-2-released/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 14:46:54 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
		
		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=335</guid>
		<description><![CDATA[<p>The best email client has just been updated and is available for download.</p>
<p></p>
]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2007/04/thunderbird-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird 2 Release Candidate 1 Released</title>
		<link>http://www.nunomira.com/blog/2007/04/thunderbird-2-release-candidate-1-released/</link>
		<comments>http://www.nunomira.com/blog/2007/04/thunderbird-2-release-candidate-1-released/#comments</comments>
		<pubDate>Sat, 07 Apr 2007 17:59:07 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
		
		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=334</guid>
		<description><![CDATA[<p>Thunderbird 2 RC1 was released yesterday.</p>
<p>I'm not on my main computer, so I haven't installed it yet. I'll install it as soon as I get home.</p>
<p>I've been using a beta?/alpha? version for a long time without any problems. I can't remember all the new features included in this release, but I remember the new look [...]]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2007/04/thunderbird-2-release-candidate-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apollo: Links that Matter</title>
		<link>http://www.nunomira.com/blog/2007/03/apollo-links-that-matter/</link>
		<comments>http://www.nunomira.com/blog/2007/03/apollo-links-that-matter/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 23:11:39 +0000</pubDate>
		<dc:creator>nuno mira</dc:creator>
		
		<guid isPermaLink="false">http://www.nunomira.com/blog/?p=333</guid>
		<description><![CDATA[<p>Mike Downey has posted a huge list of links, all Apollo-related.</p>
<p>In case you missed something from the last couple of days, here's a good chance to find it.</p>
]]></description>
		<wfw:commentRss>http://www.nunomira.com/blog/2007/03/apollo-links-that-matter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
