<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>ShortFusion Blog</title>
			<link>http://blog.shortfusion.com/index.cfm</link>
			<description>Furious Coding</description>
			<language>en-us</language>
			<pubDate>Thu, 09 Sep 2010 13:56:50 -0500</pubDate>
			<lastBuildDate>Thu, 09 Sep 2010 11:36:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>alex@shortfusion.com</managingEditor>
			<webMaster>alex@shortfusion.com</webMaster>
			<itunes:subtitle>Jason&apos;s acronym to go here</itunes:subtitle>
			<itunes:summary>Coldfusion, Flex and more tech blog</itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords>Shortfusion Blog</itunes:keywords>
			<itunes:author>ShortFusion (Alex Frates &amp; Jason Olmsted)</itunes:author>
			<itunes:owner>
				<itunes:email>alex@shortfusion.com</itunes:email>
				<itunes:name>ShortFusion (Alex Frates &amp; Jason Olmsted)</itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>ShortFusion Blog</title>
				<link>http://blog.shortfusion.com/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>How Many Ways To Make A Link?</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/9/9/How-Many-Ways-To-Make-A-Link</link>
				<description>
				
				Been doing some research on page optimization and have come across a number of different ways to make a link.  Most seem designed to avoid notice by search bots, but I can see some other uses as well.  Anyway, these are the various specimen of hyper text linking that I have been able to accumulate:  [More]
				</description>
				
				<category>User Experience &amp;amp; User Interface</category>				
				
				<pubDate>Thu, 09 Sep 2010 11:36:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/9/9/How-Many-Ways-To-Make-A-Link</guid>
				
			</item>
			
			<item>
				<title>GIS WTF?  Mecca in Florida?</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/8/25/GIS-WTF--Mecca-in-Florida</link>
				<description>
				
				Not sure if this is an Easter Egg, some sort of subtle subversion, or maybe the &lt;a href=&quot;http://en.wikipedia.org/wiki/Hajj&quot; target=&quot;new&quot;&gt;Hajj&lt;/a&gt; has just gotten tired in the Middle East, but Microsoft is now reporting that &lt;a href=&quot;http://en.wikipedia.org/wiki/Mecca&quot; target=&quot;new&quot;&gt;Mecca&lt;/a&gt; is located in &lt;a href=&quot;http://www.dunedingov.com/&quot; target=&quot;new&quot;&gt;Dunedin, FL&lt;/a&gt;.  As cool as it may be to hit the beach after a long day of pilgriming, or make the secondary stop at the &lt;a href=&quot;http://disneyworld.disney.go.com/&quot; target=&quot;new&quot;&gt;Mouse House&lt;/a&gt; (I think there must be some sort of organized Brasilian pilgrimage to Walt Disney World so there might be a conflict with the change), but I&apos;m pretty sure Mecca is still a wee bit further away and not so much contained in the territorial United States.  [More]
				</description>
				
				<category>Bing</category>				
				
				<pubDate>Wed, 25 Aug 2010 21:58:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/8/25/GIS-WTF--Mecca-in-Florida</guid>
				
			</item>
			
			<item>
				<title>White Space Killing CSS Layout</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/8/24/White-Space-Killing-CSS-Layout</link>
				<description>
				
				After a longer-than-I-want-to-admit session of reconciling CSS rendering problems where &amp;lt;li&amp;gt; items were mysteriously 3px lower in Webkit (Chrome&amp; Safari) and Internet Explorer, but not Mozilla (FF4 beta 3), I was reminded, and hopefully will remember this time that:

&lt;ul&gt;
    &lt;li&gt;item 1&lt;/li&gt;
    &lt;li&gt;item 2&lt;/li&gt;
    &lt;li&gt;item 3&lt;/li&gt;
    &lt;li&gt;item 4&lt;/li&gt;
&lt;/ul&gt;    

&lt;pre&gt;&lt;code&gt;&lt;ul&gt;
    &lt;li&gt;item 1&lt;/li&gt;
    &lt;li&gt;item 2&lt;/li&gt;
    &lt;li&gt;item 3&lt;/li&gt;
    &lt;li&gt;item 4&lt;/li&gt;
&lt;/ul&gt;&lt;/code&gt;&lt;/pre&gt;

on all browsers, is not equal to:

&lt;ul&gt;&lt;li&gt;item 1&lt;/li&gt;&lt;li&gt;item 2&lt;/li&gt;&lt;li&gt;item 3&lt;/li&gt;&lt;li&gt;item 4&lt;/li&gt;&lt;/ul&gt;

&lt;pre&gt;&lt;code&gt;&lt;ul&gt;&lt;li&gt;item 1&lt;/li&gt;&lt;li&gt;item 2&lt;/li&gt;&lt;li&gt;item 3&lt;/li&gt;&lt;li&gt;item 4&lt;/li&gt;&lt;/ul&gt;&lt;/code&gt;&lt;/pre&gt;

Friggin&apos; white spaces with a non-zero height pushing my items down.  Bah! 
				</description>
				
				<category>CSS</category>				
				
				<pubDate>Tue, 24 Aug 2010 17:22:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/8/24/White-Space-Killing-CSS-Layout</guid>
				
			</item>
			
			<item>
				<title>AIR Based iPhone &amp; iPad Emulator for Website Rendering</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/8/19/AIR-Based-iPhone--iPad-Emulator-for-Website-Rendering</link>
				<description>
				
				I am definitely Android biased as I&apos;m not a fan of Apple&apos;s walled garden, or of being obliged to a single vendor.  That said, Apple devices are nice and they seem to be the only company with a shipping tablet that is worth a damn; the &lt;a href=&quot;http://augenus.com/indexhome.html/GENTOUCH.html&quot; target=&quot;_new&quot;&gt;augen gentouch78 Android tablet&lt;/a&gt; is nice, but you&apos;d have to be delusional to prefer it over the iPad; it&apos;s desirable because it&apos;s cheap and hackable.  Oh, and there are millions of iPhones and iPads out there so chances are rather good that one of your web properties will be rendered on one so it&apos;s probably worthwhile to take a peak.  [More]
				</description>
				
				<category>Apple</category>				
				
				<pubDate>Thu, 19 Aug 2010 13:47:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/8/19/AIR-Based-iPhone--iPad-Emulator-for-Website-Rendering</guid>
				
			</item>
			
			<item>
				<title>Augen Gentouch 78 Portrait Mode Hack For eBook Reading</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/8/4/Augen-Gentouch-78-Portrait-Mode-Hack-For-eBook-Reading</link>
				<description>
				
				I acquired one of the cheap &lt;a href=&quot;http://augenus.com/indexhome.html/GENTOUCH.html&quot; target=&quot;_blank&quot;&gt;Augen Gentouch 78 Android tablets&lt;/a&gt; K-Mart is offering - a crazy excursion that made me wonder if the Delorean didn&apos;t go over 88 (it really hasn&apos;t seemed to change in the last couple of decades since I last went).  Anyway, the goal was to acquire an ebook reader and a platform for experimenting with &lt;a href=&quot;http://www.android.com/&quot; target=&quot;_blank&quot;&gt;Android&lt;/a&gt; as I&apos;m not terribly keen to risk my phone.

There are lots of other people going over the drawbacks of the device, but I try to be a glass-half-full kind of guy.  As an e-reader I need to be able to open:

&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/EPUB&quot; target=&quot;_blank&quot;&gt;ePub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/PDB_%28Palm_OS%29&quot; target=&quot;_blank&quot;&gt;pdb&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Microsoft_Compiled_HTML_Help&quot; target=&quot;_blank&quot;&gt;chm&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.amazon.com/kindle-store-ebooks-newspapers-blogs/b/ref=topnav_storetab_kinh?ie=UTF8&amp;node=133141011&quot; target=&quot;_blank&quot;&gt;azw (kindle)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/DJVU&quot; target=&quot;_blank&quot;&gt;djvu&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;pdf&lt;/li&gt;
&lt;/ul&gt;  [More]
				</description>
				
				<category>Android</category>				
				
				<pubDate>Wed, 04 Aug 2010 00:00:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/8/4/Augen-Gentouch-78-Portrait-Mode-Hack-For-eBook-Reading</guid>
				
			</item>
			
			<item>
				<title>Flex: Country Aware States ComboBox</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/6/11/Flex-Country-Aware-States-ComboBox</link>
				<description>
				
				Alex had created some extensions to ComboBox that handled pre-population of Country and State information.  They solved his problem and hopefully worked for others as well, but i just had the occasion to start using them and ran into some issues.

The first issue is that they extend ComboBox.  When you need to set the value of a ComobBox you have to go through the grief of iterating over a loop.  Luckily, I&apos;ve already addressed the needed additions to support a &lt;a href=&quot;http://blog.shortfusion.com/index.cfm/2009/8/10/Addons-to-eComboBox--Flex-ComboBox-selectedValue--More&quot; target=&quot;_new&quot;&gt;ComboBox selectedValue property&lt;/a&gt;.  So getting this up and running, at least initially, was as easy as changing ComboBox to eComboBox (you don&apos;t have to explicitely import the class if you put the definition in the same package).

The second issue is that needed states entry varies with the country.  The US has its states and territories, as does Canada and probably some other countries too (If you aren&apos;t a mostly English speaking country on North America do you even exist? - just joking) so if the country input is open ended you might find yourself wanting comboboxes as well as textinputs.  I originally had gone through the annoying process of maintaining two discrete comboboxes and a textinput and logic to control the visible and includeInLayout properties; that gets old quickly.  Instead, I just wanted a single entry for the State information with a common property for setting and getting the selected value.

To make my life easier, I decided to just extend what Alex had created by just consolidating the XML dataProviders.  For some reason, he had already included a country property so it was easy enough to group them together so as to be able to filter them later:  [More]
				</description>
				
				<category>Air</category>				
				
				<category>Flex</category>				
				
				<pubDate>Fri, 11 Jun 2010 14:20:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/6/11/Flex-Country-Aware-States-ComboBox</guid>
				
			</item>
			
			<item>
				<title>Flex: Drag Sortable VBox</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/6/9/Flex-Drag-Sortable-VBox</link>
				<description>
				
				Among my many projects, I am working on internal AIR app that includes configuring an XML document that is consumed by a separate, public-facing, flex application.  One of the features of the interface is that items are dragged onto a VBox and the children are saved in the order in which they were added; a consequence of iterating over the getChildren().  When the Flex app consumes the saved objects it displays them in order.  While this is nice as it is predictable, I was obliged to enable the ordering of these items.  The intuitive solution, at least for my group, was determined to be a simple draggable interface.  As items are added to the VBox, the expectation is that the order can be set by simply dragging the target item and dropping it in the desired location.

A Vbox is not a List and there is not a builtin support mechanism for this.  And, to prevent me from simply changing my VBox to a List, List does not have a getChildren():Array method.  Not saying that there is no way to get an array of objects contained within a List, but it became obvious that a simple switch would cause me potentially more grief than just adding the functionality to a VBox.  That said, I couldn&apos;t find any resources that detailed what I needed to accomplish (I&apos;ve been admonished in the past for re-inventing wheels, so I try to take a look at what already has been shared to save time and effort).

So, anyway, on to discussing how to make a drag sortable VBox with Flex.  I&apos;ve tried to make my solution as generic as possible to make it a functional drop-in to any situation by using UIComponents, however, some situations might be more easily solved by more precisely identifying the data type of your draggable objects.  The drag and drop parts aren&apos;t so bad.  We need to make sure that the target VBox has dragEnter and dragDrop listeners and that its children has a mouseMove listener that starts the whole thing off.  The only trick here is that we need to remember the original index of the dragged item and then calculate, at drop, what the new index ought to be.

Our setup will be something of the sort:  [More]
				</description>
				
				<category>Air</category>				
				
				<category>Flex</category>				
				
				<pubDate>Wed, 09 Jun 2010 16:42:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/6/9/Flex-Drag-Sortable-VBox</guid>
				
			</item>
			
			<item>
				<title>Steve Jobs Is A Winner</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/5/15/Steve-Jobs-Is-A-Winner</link>
				<description>
				
				I was going to write an extended bit about the latest bit of discourse between Apple and Adobe, but the schedule is not going to allow it (and, really, who wants to read it?).  So, instead, I will just share the wonderful accompanying image that I forced out of an Apple phanboy (along with sizable chunks of his soul) using &lt;strong&gt;Adobe tools&lt;/strong&gt;.  So, with no further ado, Steve Jobs, Winner, Biggest Douche of the Universe:&lt;br/&gt;&lt;br/&gt;  [More]
				</description>
				
				<category>Adobe</category>				
				
				<category>Apple</category>				
				
				<pubDate>Sat, 15 May 2010 18:56:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/5/15/Steve-Jobs-Is-A-Winner</guid>
				
			</item>
			
			<item>
				<title>ActionScript: Emerging Free Book on Bitmaps</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/4/20/Actionscript-Emerging-Free-Book-on-Bitmaps</link>
				<description>
				
				&lt;a href=&quot;http://www.bytearray.org/&quot; target=&quot;_new&quot;&gt;Thibault Imbert&lt;/a&gt;, an Adobe Systems Engineer, is working on a new book,  &lt;a href=&quot;http://www.bytearray.org/?p=711&quot; target=&quot;_new&quot;&gt;&quot;What can you do with bytes?&quot;&lt;/a&gt;, that he&apos;ll be releasing as a downloadable pdf for free.

Thibault does a lot of interesting work with ActionScript and his site is worth frequenting (especially if you are francophone as he is also one of the few, maybe only one writing AS books in French).  Anyway, he is releasing as he goes and, as of the time of this post, the first 45 pages are available.

Incidentally, I came across this while looking for a way to inject animated gifs into Flash.  There is a nifty site, ajaxload, that has a &lt;a href=&quot;http://www.ajaxload.info/&quot; target=&quot;_new&quot;&gt;free animated gif generation service for throbbers&lt;/a&gt;. 
				</description>
				
				<category>Actionscript</category>				
				
				<category>Flex</category>				
				
				<pubDate>Tue, 20 Apr 2010 12:20:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/4/20/Actionscript-Emerging-Free-Book-on-Bitmaps</guid>
				
			</item>
			
			<item>
				<title>Flex: (Somewhat) Simple ColorMatrixFilter Example</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/4/16/Flex-Somewhat-Simple-ColorMatrixFilter-Example</link>
				<description>
				
				As my &lt;a href=&quot;http://blog.shortfusion.com/index.cfm/2009/12/17/Simple-Actionscript-Color-Separator-Class&quot;&gt;Simple Actionscript Color Separator Class&lt;/a&gt; seemed to be popular, I thought that I would expand on the concept of color in Flash a bit by providing a demonstration of the ColorMatrixFilter.  Mostly this is for my own gratification as I have been investigating bitmap manipulation with ActionScript 3.0 and color is a big part of that (There are also convolution and displacement filtering capabilities and I will eventually be posting simple examples of those).

So, the quick recap is that each pixel is made up of 4 channels: Red, Green, Blue and an Alpha channel that controls opacity.  These channels are expressed as hexadecimal and aggregated together into a neat 32bit number (See the previous color post for more details).  When the ColorMatrixFilter is applied, the Flash player will iterate over every pixel in a bitmap and apply the rules of the filter on an individual basis.  This is particularly powerful, but, as one might expect with a ColorMatrixFilter, there is a matrix.  In this case, it is a 4 x 5 matrix where each row represents a channel of the bitmap and the columns represent the channels as well as an offset.  So the rows correspond to Red, Green, Blue and Alpha and the columns represent Red, Gree, Blue, Alpha and Offset. 

For any given pixel, the final channel values are expressed as the sum of the products added to the offset.  That probably didn&apos;t make as much sense as I might hope, so let&apos;s consider the following matrix, known as the identity matrix.  This is a good place to begin as this has no impact on the final color:  [More]
				</description>
				
				<category>Air</category>				
				
				<category>Actionscript</category>				
				
				<category>Flex</category>				
				
				<pubDate>Fri, 16 Apr 2010 10:05:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/4/16/Flex-Somewhat-Simple-ColorMatrixFilter-Example</guid>
				
			</item>
			
			<item>
				<title>Tampa Bay Area: Flex 4, Flash Builder 4 and ColdFusion Builder Meetup and Happy Hour (04MAY2010)</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/4/9/Tampa-Bay-Area-Flex-4-Flash-Builder-4-and-ColdFusion-Builder-Meetup-and-Happy-Hour-04MAY2010</link>
				<description>
				
				This Spring is really shaping up to be really good for developers in Tampa.  And of the upcoming events, this is the freebie one that you&apos;ll want to definitely attend.  With promises of T-Shirts, software (Adobe Flash Builder 4/ColdFusion Builder) and potentially other stuff (I&apos;m thinking stickers and maybe posters) - oh and adult bevarages - the &lt;a href=&quot;http://www.meetup.com/florida-web-developers/&quot; target=&quot;_new&quot;&gt;Central Florida Web Developers User Group&lt;/a&gt; is hosting a meetup on Flex 4, Flash Builder 4 and ColdFusion Builder.

&lt;a href=&quot;http://www.meetup.com/florida-web-developers/calendar/13112847/&quot; target=&quot;_new&quot;&gt;Click for details and to RSVP&lt;/a&gt;. 
				</description>
				
				<category>Flash</category>				
				
				<category>Coldfusion</category>				
				
				<category>Adobe</category>				
				
				<category>Flex</category>				
				
				<category>Flex Builder</category>				
				
				<pubDate>Fri, 09 Apr 2010 11:27:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/4/9/Tampa-Bay-Area-Flex-4-Flash-Builder-4-and-ColdFusion-Builder-Meetup-and-Happy-Hour-04MAY2010</guid>
				
			</item>
			
			<item>
				<title>Tampa Bay Area: Exploring Interactivity in Creative Suite 5 (20APR2010)</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/4/9/Tampa-Bay-Area-Exploring-Interactivity-in-Creative-Suite-5-20APR2010</link>
				<description>
				
				On April 20, 2010, just on the heels of the release of Adobe Creative Suite 5, the &lt;a href=&quot;http://www.meetup.com/florida-web-developers/&quot; target=&quot;_new&quot;&gt;Central Florida Web Developers User Group&lt;/a&gt; is hosting a session on Exploring Interactivity in CS5 given by &lt;a href=&quot;http://www.jameslockman.com/jamesblog/&quot; target=&quot;_new&quot;&gt;James Lockman&lt;/a&gt; who is reputed to be a digital workflow consultant and trainer.  Ostensibly, this event should appeal to &quot;programmers, designers, experts and people just getting started with Web Development&quot;.

&lt;a href=&quot;http://www.meetup.com/florida-web-developers/calendar/13130906/&quot; target=&quot;_new&quot;&gt;More details on &quot;Exploring Interactivity in CS5&quot;&lt;/a&gt;. 
				</description>
				
				<category>Adobe</category>				
				
				<category>Creative Suite</category>				
				
				<pubDate>Fri, 09 Apr 2010 10:59:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/4/9/Tampa-Bay-Area-Exploring-Interactivity-in-Creative-Suite-5-20APR2010</guid>
				
			</item>
			
			<item>
				<title>Flex: Using Regular Expressions For RealTime Filtering</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/4/7/Flex-Using-Regular-Expressions-For-RealTime-Filtering</link>
				<description>
				
				Another bit of UI fun that came up: Suppose that you are creating a form for an organization that requires email input for a single domain, but that they have specific rules that enable us to (1) make input easier and (2) prevent input errors.

In this case, let&apos;s suppose that numbers are verboten and that the typical format of the email address is the first initial and the entire last name (or the whole first name if that is all that is given).  The email account name should be over-writeable in case it is an exception to the naming convention. Also, we need to remove any additional characters that might not be email friendly.  Finally, the organization wants all email addresses are expressed in lowercase.  An example would be:

&quot;John Smith&quot; &gt;&gt; &quot;jsmith&quot;

(This was an actual set of business rules, so don&apos;t ask me how they would differentiate James Smith from John Smith)

For the interface, we&apos;ll use a single TextInput for both the first and last name and we&apos;ll use simple binding to link that into the email TextInput.  For good measure, there is a Label to show the company domain name.

So, moving right along we have a simple setup like:  [More]
				</description>
				
				<category>Air</category>				
				
				<category>User Experience &amp;amp; User Interface</category>				
				
				<category>Flex</category>				
				
				<pubDate>Wed, 07 Apr 2010 21:53:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/4/7/Flex-Using-Regular-Expressions-For-RealTime-Filtering</guid>
				
			</item>
			
			<item>
				<title>Tampa Bay Area: Free ColdFusion Builder and Coldbox Framework Workshop</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/4/7/Tampa-Bay-Area-Free-ColdFusion-Builder-and-Coldbox-Framework-Workshop</link>
				<description>
				
				A quick heads up.  On May 8, 2010, the &lt;a href=&quot;http://www.meetup.com/florida-web-developers/&quot; target=&quot;new&quot;&gt;Central Florida Web Developer Group&lt;/a&gt; (Tampa Bay Area, FL) is hosting a free full day &lt;a href=&quot;http://www.adobe.com/products/coldfusion/&quot; target=&quot;new&quot;&gt;ColdFusion Builder&lt;/a&gt; and &lt;a href=&quot;http://www.coldboxframework.com/&quot; target=&quot;new&quot;&gt;Coldbox Framework&lt;/a&gt; seminar (10:AM-5PM).  This crash course is a bring your own laptop  affair that threatens to be really useful.  I&apos;ve been meaning to use &lt;a href=&quot;http://blog.coldboxframework.com/&quot;&gt;Coldbox&lt;/a&gt; for awhile, especially as it seems to offer some interesting features for &lt;a href=&quot;http://www.riaforge.org/index.cfm&quot; target=&quot;new&quot;&gt;RIA developers&lt;/a&gt;, and I&apos;m hoping that this will be the nudge I need to fully embrace it.  Plus, it is good to see the user group experimenting with different formats.

Anyway, as of this writing, there are 14 spots available for this &lt;a href=&quot;http://www.meetup.com/florida-web-developers/calendar/13107402/&quot; target=&quot;new&quot;&gt;free ColdFusion Builder and Coldbox Framework seminar&lt;/a&gt; so RSVP quickly if you want to take advantage of this opportunity.

BTW: Aaron and Derek have been using Coldbox for awhile now and are bringing a lot practical experience with the framework to the workshop. 
				</description>
				
				<category>Coldfusion</category>				
				
				<pubDate>Wed, 07 Apr 2010 09:58:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/4/7/Tampa-Bay-Area-Free-ColdFusion-Builder-and-Coldbox-Framework-Workshop</guid>
				
			</item>
			
			<item>
				<title>Flex: Default List Item, Dynamically Populated ComboBox</title>
				<link>http://blog.shortfusion.com/index.cfm/2010/4/6/Flex-Default-List-Item-Dynamically-Populated-ComboBox</link>
				<description>
				
				I&apos;ve been crazy busy, but here is a little GUI element that I have create for use in an AIR application designed to control a Flex app.  

One of the features is the ability to create lists at configuration that are expressed as ComboBoxes in the application.  When allowing the user to set the default, I thought it would be better to ensure that the input is valid by immediately populatig a ComboBox with the options.  It is a very simple implementation, but I think the effect is pretty nifty:

&lt;pre&gt;&lt;code&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; layout=&quot;horizontal&quot; viewSourceURL=&quot;srcview/index.html&quot;&gt;

&lt;mx:Script&gt;
    &lt;![CDATA[
        import mx.collections.ArrayCollection;
		
		
        [Bindable] private var _options:ArrayCollection = new ArrayCollection();
        private function optionValueChanges(values:TextInput):void {
            var _use:String = values.text; 
            if (_use.charAt(_use.length-1) == &quot;,&quot;) {
                _use = _use.substring(0,_use.length-1);
            }
            _options = new ArrayCollection(_use.split(&quot;,&quot;));
        }	
		
    ]]&gt;
&lt;/mx:Script&gt;

&lt;mx:TextInput id=&quot;tiOptions&quot;  change=&quot;optionValueChanges(tiOptions)&quot;  width=&quot;150&quot;/&gt;
&lt;mx:ComboBox id=&quot;cbDefault&quot; dataProvider=&quot;{_options}&quot; width=&quot;200&quot;  /&gt;
	
&lt;/mx:Application&gt;
&lt;/code&gt;&lt;/pre&gt;

To make it work, just type in a comma-delimited list of items.  The little bit of conditional logic is to ignore the case when the string has a trailing &quot;,&quot;.

View a demo of the &lt;a href=&quot;http://blog.shortfusion.com/supporting/defaultList/&quot; target=&quot;_new&quot;&gt;dynamically populated ComboBox for the default selection&lt;/a&gt;. 
				</description>
				
				<category>Air</category>				
				
				<category>User Experience &amp;amp; User Interface</category>				
				
				<category>Flex</category>				
				
				<pubDate>Tue, 06 Apr 2010 12:02:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2010/4/6/Flex-Default-List-Item-Dynamically-Populated-ComboBox</guid>
				
			</item>
			</channel></rss>