<?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>lejnieks &#187; Actionscript</title>
	<atom:link href="http://www.lejnieks.com/tag/actionscript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lejnieks.com</link>
	<description></description>
	<lastBuildDate>Tue, 22 Nov 2011 16:17:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Skinning Checkbox with Error State</title>
		<link>http://www.lejnieks.com/2009/skinning-checkbox-with-error-state/</link>
		<comments>http://www.lejnieks.com/2009/skinning-checkbox-with-error-state/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 17:19:06 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Skinning]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=59</guid>
		<description><![CDATA[Similar to skinning a combobox with an error state, there may be times where you need to show the error state for a checkbox without showing its error string. main.css CheckBox &#123; icon : ClassReference&#40;&#34;com.lejnieks.poc.ui.skins.CheckboxBorderSkin&#34;&#41;; error-color : #FF0000; fillColors : &#8230; <a href="http://www.lejnieks.com/2009/skinning-checkbox-with-error-state/">Continued</a>]]></description>
		<wfw:commentRss>http://www.lejnieks.com/2009/skinning-checkbox-with-error-state/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skinning ComboBox with Error State</title>
		<link>http://www.lejnieks.com/2009/skinning-combobox-with-error-state/</link>
		<comments>http://www.lejnieks.com/2009/skinning-combobox-with-error-state/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 16:18:55 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Skinning]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=60</guid>
		<description><![CDATA[Since the ComboBox doesn&#8217;t come with an out-of-the-box error state / skin without using an error string, you can grab the sample code below to give your comboBox an error skin. The example implements the interface IValidatable which for the &#8230; <a href="http://www.lejnieks.com/2009/skinning-combobox-with-error-state/">Continued</a>]]></description>
		<wfw:commentRss>http://www.lejnieks.com/2009/skinning-combobox-with-error-state/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overriding Menu to include stage height bounds</title>
		<link>http://www.lejnieks.com/2008/overriding-menu-to-include-stage-height-bounds/</link>
		<comments>http://www.lejnieks.com/2008/overriding-menu-to-include-stage-height-bounds/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 06:11:31 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=53</guid>
		<description><![CDATA[I was working on a custom menu component uses Menu. Turns out that Menu doesnt inherintly understand the stage height of the application. What I ended up doing was creating CustomMenu which extends Menu and adds in height bounds for &#8230; <a href="http://www.lejnieks.com/2008/overriding-menu-to-include-stage-height-bounds/">Continued</a>]]></description>
		<wfw:commentRss>http://www.lejnieks.com/2008/overriding-menu-to-include-stage-height-bounds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using tokens in resource bundles</title>
		<link>http://www.lejnieks.com/2008/using-tokens-in-resource-bundles/</link>
		<comments>http://www.lejnieks.com/2008/using-tokens-in-resource-bundles/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 20:29:01 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=64</guid>
		<description><![CDATA[A quick sample on how to pass in token values to a resource bundle string. When you need to replace a token value in your bundle, you will want to use the resourceManager or ResourceManager and pass in the value &#8230; <a href="http://www.lejnieks.com/2008/using-tokens-in-resource-bundles/">Continued</a>]]></description>
		<wfw:commentRss>http://www.lejnieks.com/2008/using-tokens-in-resource-bundles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling Keyboard Events</title>
		<link>http://www.lejnieks.com/2008/handling-keyboard-events/</link>
		<comments>http://www.lejnieks.com/2008/handling-keyboard-events/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 05:57:44 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=22</guid>
		<description><![CDATA[Im working on a project that required a Keyboard Manager to track shortcut keys within the Flex app, so i went ahead a wrote this quick little POC that I later incorporated into the project. I handle shortcut keys by &#8230; <a href="http://www.lejnieks.com/2008/handling-keyboard-events/">Continued</a>]]></description>
		<wfw:commentRss>http://www.lejnieks.com/2008/handling-keyboard-events/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex Call Stack and callLater()</title>
		<link>http://www.lejnieks.com/2008/flex-call-stack-and-calllater/</link>
		<comments>http://www.lejnieks.com/2008/flex-call-stack-and-calllater/#comments</comments>
		<pubDate>Sat, 17 May 2008 04:47:10 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=25</guid>
		<description><![CDATA[Ive used callLater() quite a few times before, but about a week ago a co-worker asked me if I knew exactly when callLater() was called. Well I think its 1 millisecond after the method executes, to which he re-asked if &#8230; <a href="http://www.lejnieks.com/2008/flex-call-stack-and-calllater/">Continued</a>]]></description>
		<wfw:commentRss>http://www.lejnieks.com/2008/flex-call-stack-and-calllater/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Image Load I/O Error in Flex</title>
		<link>http://www.lejnieks.com/2008/image-load-io-error-in-flex/</link>
		<comments>http://www.lejnieks.com/2008/image-load-io-error-in-flex/#comments</comments>
		<pubDate>Sat, 10 May 2008 01:57:45 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=24</guid>
		<description><![CDATA[On a project im working on I ran into a very strange error when trying to load in a simple .jpg image. The image wouldn&#8217;t load. Now this sounds like a very familiar issue and easily solvable right? That what &#8230; <a href="http://www.lejnieks.com/2008/image-load-io-error-in-flex/">Continued</a>]]></description>
		<wfw:commentRss>http://www.lejnieks.com/2008/image-load-io-error-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enum toArray()</title>
		<link>http://www.lejnieks.com/2008/enum-toarray/</link>
		<comments>http://www.lejnieks.com/2008/enum-toarray/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 06:50:31 +0000</pubDate>
		<dc:creator>klejnieks</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Actionscript]]></category>

		<guid isPermaLink="false">http://lejnieks.com/?p=13</guid>
		<description><![CDATA[There have been plenty of times that Ive needed to reuse the values of my enums as an array. A good example of this would be an enumeration of US states. There are many ways of doing this, however I &#8230; <a href="http://www.lejnieks.com/2008/enum-toarray/">Continued</a>]]></description>
		<wfw:commentRss>http://www.lejnieks.com/2008/enum-toarray/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

