<?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>joe-ferraro.com &#187; flex</title>
	<atom:link href="http://joe-ferraro.com/tag/flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://joe-ferraro.com</link>
	<description>adless since 2008</description>
	<lastBuildDate>Thu, 24 Mar 2011 22:22:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>(unofficial) adobe air tasks</title>
		<link>http://joe-ferraro.com/2008/08/adobe-air-tasks/</link>
		<comments>http://joe-ferraro.com/2008/08/adobe-air-tasks/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 01:36:11 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[flex]]></category>
		<category><![CDATA[salesforce]]></category>
		<category><![CDATA[adobe air]]></category>

		<guid isPermaLink="false">http://joe-ferraro.com/?p=42</guid>
		<description><![CDATA[i'm gauging interest from other consultants that track time in Salesforce.com.  Would you use an AIR app?  See a screencast after the jump...
]]></description>
			<content:encoded><![CDATA[<div><img src="http://www.joe-ferraro.com/images/airtasks1.png" alt="airtasks"/></div>
<p>I got tired of logging into our Salesforce.com instance to log billable activities, so I developed this AIR app&#8230;is this something people would use?<br />
<br />
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="350" height="443"><param name="movie" value="http://www.joe-ferraro.com/video/airtasks.swf"></param><param name="quality" value="high"></param><param name="bgcolor" value="#FFFFFF"></param><param name="flashVars" value="thumb=http://content.screencast.com/users/jf317820/folders/Jing/media/cc8c2eb2-32a2-4caf-b6df-23a418e6c0ec/FirstFrame.jpg&#038;content=http://www.joe-ferraro.com/video/airtasks.swf&#038;width=350&#038;height=443"></param><param name="allowFullScreen" value="true"></param><param name="scale" value="showall"></param><param name="allowScriptAccess" value="always"></param>  <embed src="http://www.joe-ferraro.com/video/airtasks.swf" quality="high" bgcolor="#FFFFFF" width="350" height="443" type="application/x-shockwave-flash" allowScriptAccess="always" flashVars="thumb=http://content.screencast.com/users/jf317820/folders/Jing/media/cc8c2eb2-32a2-4caf-b6df-23a418e6c0ec/FirstFrame.jpg&#038;content=http://www.joe-ferraro.com/video/airtasks.swf&#038;width=350&#038;height=443" allowFullScreen="true" scale="showall"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://joe-ferraro.com/2008/08/adobe-air-tasks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>populating a flex combobox with picklist values</title>
		<link>http://joe-ferraro.com/2008/08/populating-a-flex-combobox-with-picklist-values/</link>
		<comments>http://joe-ferraro.com/2008/08/populating-a-flex-combobox-with-picklist-values/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 23:03:49 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[apex]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[salesforce]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://joe-ferraro.com/?p=41</guid>
		<description><![CDATA[i've had some requests concerning filling flex combobox's with picklist values returned from a describe call...]]></description>
			<content:encoded><![CDATA[<pre name="code" class="javascript">

//actionscript
[Bindable] var comboList:Array = new Array();
var myPicklistValues:ArrayCollection = new ArrayCollection();
apex.describeSObjects([&quot;Task&quot;],
	new AsyncResponder(function (result:Object):void
	{
		myPicklistValues = result[0].fields.Status.picklistValues;
		for (var p:int=0;p&lt;myPicklistValues.length;p++)
		{
			if (myPicklistValues[p].active)
			{
				var foo:PickListEntry = myPicklistValues[p].label;
				comboList.push(foo);
			}
        }
	} 

}, genericFault));
</pre>
<pre name="code" class="javascript">

//Flex code
&lt;mx:ComboBox width=&quot;180&quot; dataProvider=&quot;{comboList}&quot; /&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://joe-ferraro.com/2008/08/populating-a-flex-combobox-with-picklist-values/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

