<?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>Tiago Lopes da Costa</title>
	<atom:link href="http://www.tiagolopes.pro.br/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tiagolopes.pro.br/wp</link>
	<description>Desenvolvedor Flash &#38; Flex</description>
	<lastBuildDate>Fri, 08 Jul 2011 10:08:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Dica de AS3 :: Gravando variáveis locais com AIR</title>
		<link>http://www.tiagolopes.pro.br/wp/artigos/tips-as3-air-localvariable/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tips-as3-air-localvariable</link>
		<comments>http://www.tiagolopes.pro.br/wp/artigos/tips-as3-air-localvariable/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 23:38:19 +0000</pubDate>
		<dc:creator>Tiago Lopes da Costa</dc:creator>
				<category><![CDATA[Artigos]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[EncryptedLocalStore]]></category>
		<category><![CDATA[Flex 3]]></category>

		<guid isPermaLink="false">http://www.tiagolopes.pro.br/wp/?p=140</guid>
		<description><![CDATA[As vezes em uma aplicação AIR a gente precisa que a aplicação guarde uma variável local, que não seja no banco de dados ou arquivo de texto. Por exemplo o...]]></description>
			<content:encoded><![CDATA[<p>As vezes em uma aplicação AIR a gente precisa que a aplicação guarde uma variável local, que não seja no banco de dados ou arquivo de texto. Por exemplo o caminho onde o banco de dados está arquivado, ou login e senha para acesso ao sistema, caso o usuário deseje que estes fiquem armazenados para facilitar a autenticação.</p>
<p>O AIR disponibiliza a API &#8220;<strong>flash.data.EncryptedLocalStore</strong>&#8220;, que possibilita gravar variáveis em um objeto dinámico que é encriptado e gravado no disco do cliente na pasta da sua aplicação, esse arquivo não pode ser aberto por outra aplicação ou usuário. Para utilizar o &#8220;<strong>EncryptedLocalStore</strong>&#8221; você precisa converter seu objeto para um &#8220;<strong>ByteArray</strong>&#8221; e arquiva-lo na instância do &#8220;<strong>EncryptedLocalStore</strong>&#8220;, que é um Singleton, veja o exemplo abaixo como utilizar essa API.</p>
<pre>Como gravar uma String no <strong>EncryptedLocalStore</strong>
<div class="codecolorer-container actionscript default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="actionscript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">var</span> storedDBPath:ByteArray = <span style="color: #000000; font-weight: bold;">new</span> ByteArray<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; storedDBPath.<span style="color: #006600;">writeUTFBytes</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;/User/dbPath/db.sqlite&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; EncryptedLocalStore.<span style="color: #006600;">setItem</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;dataBaseFile&quot;</span>,storedDBPath<span style="color: #66cc66;">&#41;</span>;</div></td></tr></tbody></table></div>

Como ler uma String gravado no <strong>EncryptedLocalStore</strong>
<div class="codecolorer-container actionscript default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="actionscript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">var</span> storedDBPath:ByteArray = EncryptedLocalStore.<span style="color: #006600;">getItem</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;dataBaseFile&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />
<span style="color: #0066CC;">trace</span><span style="color: #66cc66;">&#40;</span>storedDBPath.<span style="color: #006600;">readUTFBytes</span><span style="color: #66cc66;">&#40;</span>storedDBPath.<span style="color: #0066CC;">length</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;</div></td></tr></tbody></table></div>
</pre>
<p>por enquanto é só isso, logo estarei publicando um exemplo prático para essa API.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tiagolopes.pro.br/wp/artigos/tips-as3-air-localvariable/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Construtora Marquise</title>
		<link>http://www.tiagolopes.pro.br/wp/portfolio/construtora-marquise/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=construtora-marquise</link>
		<comments>http://www.tiagolopes.pro.br/wp/portfolio/construtora-marquise/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 23:11:12 +0000</pubDate>
		<dc:creator>Tiago Lopes da Costa</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.tiagolopes.pro.br/wp/?p=65</guid>
		<description><![CDATA[Portal - Construtora do grupo Marquise, fundada em 1974 conta hoje com mais de 200 obras em seu variado portfólio]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-5-65">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.tiagolopes.pro.br/wp/portfolio/construtora-marquise/?show=slide">
			[Mostrar slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.tiagolopes.pro.br/wp/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=5&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/001.jpg" title=" " rel="lightbox[set_5]" >
								<img title="001.jpg" alt="001.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_001.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-39" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/002.jpg" title=" " rel="lightbox[set_5]" >
								<img title="002.jpg" alt="002.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_002.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-40" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/003.jpg" title=" " rel="lightbox[set_5]" >
								<img title="003.jpg" alt="003.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_003.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-41" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/004.jpg" title=" " rel="lightbox[set_5]" >
								<img title="004.jpg" alt="004.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_004.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-42" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/005.jpg" title=" " rel="lightbox[set_5]" >
								<img title="005.jpg" alt="005.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_005.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-43" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/006.jpg" title=" " rel="lightbox[set_5]" >
								<img title="006.jpg" alt="006.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_006.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-44" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/007.jpg" title=" " rel="lightbox[set_5]" >
								<img title="007.jpg" alt="007.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_007.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-45" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/008.jpg" title=" " rel="lightbox[set_5]" >
								<img title="008.jpg" alt="008.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_008.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-46" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/009.jpg" title=" " rel="lightbox[set_5]" >
								<img title="009.jpg" alt="009.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_009.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-47" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/010.jpg" title=" " rel="lightbox[set_5]" >
								<img title="010.jpg" alt="010.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_010.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-48" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/011.jpg" title=" " rel="lightbox[set_5]" >
								<img title="011.jpg" alt="011.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_011.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-49" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/012.jpg" title=" " rel="lightbox[set_5]" >
								<img title="012.jpg" alt="012.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/construtora-marquise/thumbs/thumbs_012.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.tiagolopes.pro.br/wp/portfolio/construtora-marquise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xerez Loterias</title>
		<link>http://www.tiagolopes.pro.br/wp/portfolio/xerez-loterias/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=xerez-loterias</link>
		<comments>http://www.tiagolopes.pro.br/wp/portfolio/xerez-loterias/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 23:09:48 +0000</pubDate>
		<dc:creator>Tiago Lopes da Costa</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tiagolopes.pro.br/wp/?p=62</guid>
		<description><![CDATA[Site - Lotérica da Caixa com 3 filiais em Fortaleza/CE]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-6-62">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.tiagolopes.pro.br/wp/portfolio/xerez-loterias/?show=slide">
			[Mostrar slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.tiagolopes.pro.br/wp/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=6&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-51" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/001.jpg" title=" " rel="lightbox[set_6]" >
								<img title="001.jpg" alt="001.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/thumbs/thumbs_001.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-52" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/002.jpg" title=" " rel="lightbox[set_6]" >
								<img title="002.jpg" alt="002.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/thumbs/thumbs_002.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-53" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/003.jpg" title=" " rel="lightbox[set_6]" >
								<img title="003.jpg" alt="003.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/thumbs/thumbs_003.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-54" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/004.jpg" title=" " rel="lightbox[set_6]" >
								<img title="004.jpg" alt="004.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/thumbs/thumbs_004.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-55" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/005.jpg" title=" " rel="lightbox[set_6]" >
								<img title="005.jpg" alt="005.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/thumbs/thumbs_005.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-56" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/006.jpg" title=" " rel="lightbox[set_6]" >
								<img title="006.jpg" alt="006.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/thumbs/thumbs_006.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-57" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/007.jpg" title=" " rel="lightbox[set_6]" >
								<img title="007.jpg" alt="007.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/xerez-loterias/thumbs/thumbs_007.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.tiagolopes.pro.br/wp/portfolio/xerez-loterias/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GranMarquise Hotel</title>
		<link>http://www.tiagolopes.pro.br/wp/portfolio/granmarquise/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=granmarquise</link>
		<comments>http://www.tiagolopes.pro.br/wp/portfolio/granmarquise/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 23:00:08 +0000</pubDate>
		<dc:creator>Tiago Lopes da Costa</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tiagolopes.pro.br/wp/?p=57</guid>
		<description><![CDATA[Site - Hotel de luxo do grupo Marquise, um conglomerado de empresas com sede em Fortaleza e mais de 17 filias espalhas pelo Brasil]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-4-57">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.tiagolopes.pro.br/wp/portfolio/granmarquise/?show=slide">
			[Mostrar slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.tiagolopes.pro.br/wp/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=4&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/001.jpg" title=" " rel="lightbox[set_4]" >
								<img title="001.jpg" alt="001.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_001.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/002.jpg" title=" " rel="lightbox[set_4]" >
								<img title="002.jpg" alt="002.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_002.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/003.jpg" title=" " rel="lightbox[set_4]" >
								<img title="003.jpg" alt="003.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_003.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/004.jpg" title=" " rel="lightbox[set_4]" >
								<img title="004.jpg" alt="004.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_004.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/005.jpg" title=" " rel="lightbox[set_4]" >
								<img title="005.jpg" alt="005.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_005.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-30" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/006.jpg" title=" " rel="lightbox[set_4]" >
								<img title="006.jpg" alt="006.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_006.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-31" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/007.jpg" title=" " rel="lightbox[set_4]" >
								<img title="007.jpg" alt="007.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_007.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-32" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/008.jpg" title=" " rel="lightbox[set_4]" >
								<img title="008.jpg" alt="008.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_008.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-33" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/009.jpg" title=" " rel="lightbox[set_4]" >
								<img title="009.jpg" alt="009.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_009.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/010.jpg" title=" " rel="lightbox[set_4]" >
								<img title="010.jpg" alt="010.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_010.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-35" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/011.jpg" title=" " rel="lightbox[set_4]" >
								<img title="011.jpg" alt="011.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_011.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-36" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/012.jpg" title=" " rel="lightbox[set_4]" >
								<img title="012.jpg" alt="012.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_012.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-37" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/013.jpg" title=" " rel="lightbox[set_4]" >
								<img title="013.jpg" alt="013.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_013.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-50" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/014.jpg" title=" " rel="lightbox[set_4]" >
								<img title="014.jpg" alt="014.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/granmarquise/thumbs/thumbs_014.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.tiagolopes.pro.br/wp/portfolio/granmarquise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ricardo Rodrigues Team</title>
		<link>http://www.tiagolopes.pro.br/wp/portfolio/ricardo-rodrigues-team/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ricardo-rodrigues-team</link>
		<comments>http://www.tiagolopes.pro.br/wp/portfolio/ricardo-rodrigues-team/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 03:47:04 +0000</pubDate>
		<dc:creator>Tiago Lopes da Costa</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tiagolopes.pro.br/wp/?p=38</guid>
		<description><![CDATA[Site - Assessoria esportiva do treinador Ricardo Rodrigues]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-3-38">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.tiagolopes.pro.br/wp/portfolio/ricardo-rodrigues-team/?show=slide">
			[Mostrar slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.tiagolopes.pro.br/wp/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=3&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/001.jpg" title=" " rel="lightbox[set_3]" >
								<img title="001.jpg" alt="001.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_001.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/002.jpg" title=" " rel="lightbox[set_3]" >
								<img title="002.jpg" alt="002.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_002.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/003.jpg" title=" " rel="lightbox[set_3]" >
								<img title="003.jpg" alt="003.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_003.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/004.jpg" title=" " rel="lightbox[set_3]" >
								<img title="004.jpg" alt="004.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_004.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/005.jpg" title=" " rel="lightbox[set_3]" >
								<img title="005.jpg" alt="005.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_005.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/006.jpg" title=" " rel="lightbox[set_3]" >
								<img title="006.jpg" alt="006.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_006.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/007.jpg" title=" " rel="lightbox[set_3]" >
								<img title="007.jpg" alt="007.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_007.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-17" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/008.jpg" title=" " rel="lightbox[set_3]" >
								<img title="008.jpg" alt="008.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_008.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/009.jpg" title=" " rel="lightbox[set_3]" >
								<img title="009.jpg" alt="009.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_009.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/010.jpg" title=" " rel="lightbox[set_3]" >
								<img title="010.jpg" alt="010.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_010.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/011.jpg" title=" " rel="lightbox[set_3]" >
								<img title="011.jpg" alt="011.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ricardo-rodrigues-team/thumbs/thumbs_011.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.tiagolopes.pro.br/wp/portfolio/ricardo-rodrigues-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dica de AS3 :: Utilização do ColorTransform para mudança de color de um DisplayObject</title>
		<link>http://www.tiagolopes.pro.br/wp/artigos/tips-as3-colortransform/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tips-as3-colortransform</link>
		<comments>http://www.tiagolopes.pro.br/wp/artigos/tips-as3-colortransform/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 20:35:14 +0000</pubDate>
		<dc:creator>Tiago Lopes da Costa</dc:creator>
				<category><![CDATA[Artigos]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[ColorTransform]]></category>
		<category><![CDATA[Transform]]></category>

		<guid isPermaLink="false">http://www.tiagolopes.pro.br/wp/?p=22</guid>
		<description><![CDATA[Como utilizar o ColorTransform do ActionScript]]></description>
			<content:encoded><![CDATA[<p>O código abaixo é um exemplo de como transformar a cor de qualquer objeto visual do flash.</p>
<pre>
<div class="codecolorer-container actionscript default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="actionscript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">var</span> colorTransforme:ColorTransform = <span style="color: #000000; font-weight: bold;">new</span> ColorTransform<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//Instancia o novo ColorTransform</span><br />
&nbsp; &nbsp; colorTransforme.<span style="color: #0066CC;">color</span> = 0xFFFFFF; <span style="color: #808080; font-style: italic;">//Define a nova cor do ColorTransform</span><br />
&nbsp; &nbsp; seuDisplayObject.<span style="color: #006600;">transform</span>.<span style="color: #006600;">colorTransform</span> = colorTransforme; <span style="color: #808080; font-style: italic;">//Define o novo ColorTransform do alvo</span></div></td></tr></tbody></table></div>
</pre>
<p>O Exemplo abaixo é uma classe funcional.</p>
<pre>
<div class="codecolorer-container actionscript default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br /></div></td><td><div class="actionscript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">package <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">GradientType</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">Sprite</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">events</span>.<span style="color: #006600;">MouseEvent</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">geom</span>.<span style="color: #006600;">ColorTransform</span>;<br />
<br />
&nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">class</span> ColorTransformExample <span style="color: #0066CC;">extends</span> Sprite<br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* Metodo construtor */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> ColorTransformExample<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">target</span>:Sprite = <span style="color: #000000; font-weight: bold;">new</span> Sprite<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//Objecto que será nosso alvo</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; draw<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">target</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//Chamada do metodo draw que desenha um quadrado preenchido com um gradiente</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addChild<span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">target</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//Adiciona nosso alvo no palco.</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">target</span>.<span style="color: #006600;">buttonMode</span> = <span style="color: #000000; font-weight: bold;">true</span>; <span style="color: #808080; font-style: italic;">//Mudo o comportamento da seta do mouse quando estiver sobre o nosso alvo</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">//Adiciona o ouvinte ao evento MouseEvent.MOUSE_OVER do alvo, disparado quando o mouse entra em contato físico com o alvo</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">target</span>.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>MouseEvent.<span style="color: #006600;">MOUSE_OVER</span>, mouseOverHanlder<span style="color: #66cc66;">&#41;</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">//Adiciona o ouvinte ao evento MouseEvent.MOUSE_OUT do alvo, disparado quando o mouse perde o contato físico com o alvo</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">target</span>.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>MouseEvent.<span style="color: #006600;">MOUSE_OUT</span>, mouseOutHandler<span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* Metodo de desenho */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> draw<span style="color: #66cc66;">&#40;</span>sprite:Sprite<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">size</span>:<span style="color: #0066CC;">Number</span> = <span style="color: #cc66cc;">100</span>; <span style="color: #808080; font-style: italic;">//Configura o tamanho do quadrado</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sprite.<span style="color: #006600;">graphics</span>.<span style="color: #0066CC;">beginGradientFill</span><span style="color: #66cc66;">&#40;</span>GradientType.<span style="color: #006600;">LINEAR</span>,<span style="color: #66cc66;">&#91;</span>0xFF0000, 0x0000FF, 0x00FF00<span style="color: #66cc66;">&#93;</span>, <span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">1</span>, <span style="color: #cc66cc;">0.5</span>, <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#93;</span>, <span style="color: #66cc66;">&#91;</span><span style="color: #cc66cc;">0</span>, <span style="color: #cc66cc;">200</span>, <span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//Define o preenchimento do quadrado com um gradiente</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sprite.<span style="color: #006600;">graphics</span>.<span style="color: #006600;">drawRect</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span>, <span style="color: #cc66cc;">0</span>, <span style="color: #cc66cc;">100</span>, <span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//Desenha o quadrado</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* Metodo ouvinte do evento MouseEvent.MOUSE_OVER */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> mouseOverHanlder<span style="color: #66cc66;">&#40;</span>event:MouseEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">var</span> colorTransforme:ColorTransform = <span style="color: #000000; font-weight: bold;">new</span> ColorTransform<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//Instancia o novo ColorTransform</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; colorTransforme.<span style="color: #0066CC;">color</span> = 0xCCCCCC; <span style="color: #808080; font-style: italic;">//Define a nova cor do ColorTransform</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; event.<span style="color: #0066CC;">target</span>.<span style="color: #006600;">transform</span>.<span style="color: #006600;">colorTransform</span> = colorTransforme; <span style="color: #808080; font-style: italic;">//Define o novo ColorTransform do alvo</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">/* Metodo ouvinte do evento MouseEvent.MOUSE_OUT */</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> mouseOutHandler<span style="color: #66cc66;">&#40;</span>event:MouseEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; event.<span style="color: #0066CC;">target</span>.<span style="color: #006600;">transform</span>.<span style="color: #006600;">colorTransform</span> = <span style="color: #000000; font-weight: bold;">new</span> ColorTransform<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #808080; font-style: italic;">//Define o ColorTransform padrão do alvo;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
<span style="color: #66cc66;">&#125;</span></div></td></tr></tbody></table></div>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tiagolopes.pro.br/wp/artigos/tips-as3-colortransform/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LDB Cargas</title>
		<link>http://www.tiagolopes.pro.br/wp/portfolio/ldb-cargas/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ldb-cargas</link>
		<comments>http://www.tiagolopes.pro.br/wp/portfolio/ldb-cargas/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 15:07:43 +0000</pubDate>
		<dc:creator>Tiago Lopes da Costa</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex 3]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tiagolopes.pro.br/wp/?p=12</guid>
		<description><![CDATA[Portal :: Transportadora com matriz sediada em Fortaleza filiais em 10 estados brasileiros.]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-2-12">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.tiagolopes.pro.br/wp/portfolio/ldb-cargas/?show=slide">
			[Mostrar slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.tiagolopes.pro.br/wp/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=2&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas001.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas001.jpg" alt="ldbcargas001.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas001.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas002.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas002.jpg" alt="ldbcargas002.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas002.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas003.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas003.jpg" alt="ldbcargas003.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas003.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas004.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas004.jpg" alt="ldbcargas004.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas004.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-9" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas005.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas005.jpg" alt="ldbcargas005.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas005.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas006.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas006.jpg" alt="ldbcargas006.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas006.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-7" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas007.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas007.jpg" alt="ldbcargas007.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas007.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-6" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas008.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas008.jpg" alt="ldbcargas008.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas008.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas009.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas009.jpg" alt="ldbcargas009.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas009.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-4" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/ldbcargas010.jpg" title=" " rel="lightbox[set_2]" >
								<img title="ldbcargas010.jpg" alt="ldbcargas010.jpg" src="http://www.tiagolopes.pro.br/wp/wp-content/gallery/ldb-cargas/thumbs/thumbs_ldbcargas010.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.tiagolopes.pro.br/wp/portfolio/ldb-cargas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

