<?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>zerokernel.com &#187; development</title>
	<atom:link href="http://zerokernel.com/blog/index.php/tag/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://zerokernel.com/blog</link>
	<description>everything you don't need to know (but you are asking anyway)</description>
	<lastBuildDate>Sat, 20 Feb 2010 20:19:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex: Dynamic Background Image on Canvas (redraw version)</title>
		<link>http://zerokernel.com/blog/index.php/2010/02/18/flex-dynamic-background-image-on-canvas-redraw-version/</link>
		<comments>http://zerokernel.com/blog/index.php/2010/02/18/flex-dynamic-background-image-on-canvas-redraw-version/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 21:51:51 +0000</pubDate>
		<dc:creator>polozero</dc:creator>
				<category><![CDATA[flex]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[dynamic canvas background]]></category>
		<category><![CDATA[examples]]></category>

		<guid isPermaLink="false">http://zerokernel.com/blog/?p=164</guid>
		<description><![CDATA[Today I tried to load an image form an url and apply it to a background, well appears like setStyle don&#8217;t have the ability to load an image from URL.
So I had to look another alternative, I load the image using an Loader, but I couldn&#8217;t found a way to apply it to the background [...]


Related posts:<ol><li><a href='http://zerokernel.com/blog/index.php/2009/05/25/youtube-and-flex-3/' rel='bookmark' title='Permanent Link: Youtube and Flex 3'>Youtube and Flex 3</a> <small>A time ago google released an SWF/API to interact with...</small></li><li><a href='http://zerokernel.com/blog/index.php/2008/11/16/skinning-flex-components/' rel='bookmark' title='Permanent Link: Skinning flex components'>Skinning flex components</a> <small>sometimes when you are customizing the UI of a flex...</small></li><li><a href='http://zerokernel.com/blog/index.php/2008/12/29/flex-myths/' rel='bookmark' title='Permanent Link: Flex Myths'>Flex Myths</a> <small>I found a very nice article about misconceptions of flex,...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Today I tried to load an image form an url and apply it to a background, well appears like setStyle don&#8217;t have the ability to load an image from URL.</p>
<p>So I had to look another alternative, I load the image using an Loader, but I couldn&#8217;t found a way to apply it to the background  style, I did a workaround, I draw it on the graphics object, I guess it is helpful because the image is titled, but I will try more options I didn&#8217;t quite like 100% this solution.</p>
<p>IMPORTANT : dont&#8217; forget the security restrictions of doing this, remember that flash can&#8217;t load images from another domain, and www.zerokernel.com is different to zerokenel.com, see Adobe for more information ( <a href="http://www.adobe.com/devnet/flashplayer/articles/flash_player_9_security.pdf">Player 9 restrictions from Adobe &#8211; PDF</a> )</p>
<p>Anyway, here is the demo:</p>
<p><a href="http://zerokernel.com/demos/flex/backgroundChanger/  ">http://zerokernel.com/demos/flex/backgroundChanger/</a></p>
<p>And the code:</p>
<p><a href="http://zerokernel.com/demos/flex/backgroundChanger/BackgroundChanger.zip">http://zerokernel.com/demos/flex/backgroundChanger/BackgroundChanger.zip</a></p>


<p>Related posts:<ol><li><a href='http://zerokernel.com/blog/index.php/2009/05/25/youtube-and-flex-3/' rel='bookmark' title='Permanent Link: Youtube and Flex 3'>Youtube and Flex 3</a> <small>A time ago google released an SWF/API to interact with...</small></li><li><a href='http://zerokernel.com/blog/index.php/2008/11/16/skinning-flex-components/' rel='bookmark' title='Permanent Link: Skinning flex components'>Skinning flex components</a> <small>sometimes when you are customizing the UI of a flex...</small></li><li><a href='http://zerokernel.com/blog/index.php/2008/12/29/flex-myths/' rel='bookmark' title='Permanent Link: Flex Myths'>Flex Myths</a> <small>I found a very nice article about misconceptions of flex,...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zerokernel.com/blog/index.php/2010/02/18/flex-dynamic-background-image-on-canvas-redraw-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Json Navigator</title>
		<link>http://zerokernel.com/blog/index.php/2009/02/03/json-navigator/</link>
		<comments>http://zerokernel.com/blog/index.php/2009/02/03/json-navigator/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 16:24:04 +0000</pubDate>
		<dc:creator>Polo Ornelas</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://zerokernel.com/blog/?p=74</guid>
		<description><![CDATA[Hey guys, to complement my other post of the json validator, here is the json &#8220;Navigator&#8221; (netscape anyone?), it&#8217;s very useful for anyone dealing with complex structures. 
http://danml.com/pub/jsonBrowser.htm


Related posts:Json Validator I&#8217;ve found a very useful json validator, specially when you...
Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://zerokernel.com/blog/index.php/2009/01/08/json-validator/' rel='bookmark' title='Permanent Link: Json Validator'>Json Validator</a> <small>I&#8217;ve found a very useful json validator, specially when you...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hey guys, to complement my other post of the json validator, here is the json &#8220;Navigator&#8221; (netscape anyone?), it&#8217;s very useful for anyone dealing with complex structures. </p>
<p><a href="http://danml.com/pub/jsonBrowser.htm">http://danml.com/pub/jsonBrowser.htm</a></p>


<p>Related posts:<ol><li><a href='http://zerokernel.com/blog/index.php/2009/01/08/json-validator/' rel='bookmark' title='Permanent Link: Json Validator'>Json Validator</a> <small>I&#8217;ve found a very useful json validator, specially when you...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zerokernel.com/blog/index.php/2009/02/03/json-navigator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Json Validator</title>
		<link>http://zerokernel.com/blog/index.php/2009/01/08/json-validator/</link>
		<comments>http://zerokernel.com/blog/index.php/2009/01/08/json-validator/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 21:00:23 +0000</pubDate>
		<dc:creator>Polo Ornelas</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://zerokernel.com/blog/?p=63</guid>
		<description><![CDATA[I&#8217;ve found a very useful json validator, specially when you are like me and forget to put the &#8221; in the objects
http://www.jsonlint.com/


Related posts:Json Navigator Hey guys, to complement my other post of the json...
Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://zerokernel.com/blog/index.php/2009/02/03/json-navigator/' rel='bookmark' title='Permanent Link: Json Navigator'>Json Navigator</a> <small>Hey guys, to complement my other post of the json...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found a very useful json validator, specially when you are like me and forget to put the &#8221; in the objects</p>
<p><a href="http://www.jsonlint.com/">http://www.jsonlint.com/</a></p>


<p>Related posts:<ol><li><a href='http://zerokernel.com/blog/index.php/2009/02/03/json-navigator/' rel='bookmark' title='Permanent Link: Json Navigator'>Json Navigator</a> <small>Hey guys, to complement my other post of the json...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://zerokernel.com/blog/index.php/2009/01/08/json-validator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
