<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0" 
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Adobe Flex Mailing List RSS Feed</title> 
<link>http://www.houseoffusion.com/groups/flex</link> 
<description>Discussion about the Adobe Flex 2server, it's language (MXML), the Flex Builder IDE (based on Eclipse) and anything else related to the product.</description> 
<language>en-us</language> 
<copyright>Copyright 2010, House of Fusion</copyright> 
<lastBuildDate>Fri, 19 Mar 2010 02:30:39 GMT</lastBuildDate> 
<webMaster>Michael Dinowitz (mdinowit@houseoffusion.com)</webMaster> 
<category>Mailing List</category>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>

<item>
	<title><![CDATA[datagrid custom itemrenderer sorting]]></title> 
	<description><![CDATA[Ok I have a somewhat complicate datagrid renderer set up. <br>
	<br>
	I have a custom component with 2 datagrids: headerDisplay, container.&nbsp;&nbsp;both tied to same dataProvider.<br>
	<br>
	headerDisplay only shows the header, none of the data rows<br>
	<br>
	container shows 1 <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6266"  title="Adobe Flex: datagrid custom itemrenderer sorting">more</A>]]]></description> 
	<pubDate>Mon, 08 Feb 2010 07:02:00 GMT</pubDate> 
	<dc:author>Yuliang Ruan </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6266</guid> 
</item>

<item>
	<title><![CDATA[a question about code speed of flex]]></title> 
	<description><![CDATA[D=1;<br>
	<br>
	Takes 10 seconds?<br>
	<br>
	Boy I am not sure what or how slow your computer is but that code takes like<br>
	.00100ms for me to run.<br>
	<br>
	-----Original Message-----<br>
	From: harry wang [mailto:godhasbless@sina.com] <br>
	Sent: Thursday, 4 February 2010 8:33 PM<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6259"  title="Adobe Flex: a question about code speed of flex">more</A>]]]></description> 
	<pubDate>Sat, 06 Feb 2010 03:25:00 GMT</pubDate> 
	<dc:author>Andrew Scott</dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6259</guid> 
</item>

<item>
	<title><![CDATA[how to catch a dynamically created custom component's event?]]></title> 
	<description><![CDATA[n/m figured it out.&nbsp;&nbsp;&nbsp;you add it to the current component.&nbsp;&nbsp;so my canvas component<br>
	<br>
	addEventListener(&quot;expandBtnPressed&quot;,myhandler<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6257"  title="Adobe Flex: how to catch a dynamically created custom component's event?">more</A>]]]></description> 
	<pubDate>Fri, 05 Feb 2010 01:06:00 GMT</pubDate> 
	<dc:author>Yuliang Ruan </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6257</guid> 
</item>

<item>
	<title><![CDATA[how to catch a dynamically created custom component's event?]]></title> 
	<description><![CDATA[What I have is a wrapper custom component as a Canvas containing a DataGrid with a custom item renderer in the 1st column.&nbsp;&nbsp;&nbsp;I'm inserting DataGridColumns into the DataGrid upon Canvas creationComplete.&nbsp;&nbsp;&nbsp; Inside my expandBtnRenderer, I have it <br>
	<br>
	<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6256"  title="Adobe Flex: how to catch a dynamically created custom component's event?">more</A>]]]></description> 
	<pubDate>Fri, 05 Feb 2010 11:29:00 GMT</pubDate> 
	<dc:author>Yuliang Ruan </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6256</guid> 
</item>

<item>
	<title><![CDATA[a question about code speed of flex]]></title> 
	<description><![CDATA[&gt;CODE 1<br>
	&gt;<br>
	&gt;function test():void{<br>
	&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var loop:int = 0;<br>
	&gt;var i:int = 0;<br>
	&gt;var j:int = 0;<br>
	&gt;var now:Date = new Date();<br>
	&gt;var d:Number = 1.1;<br>
	&gt;for(i=0;i&lt;10;i++){<br>
	&gt;for(j=0;j&lt;10000000;j++){<br>
	&gt; <br>
	&gt;&nbsp;&nbsp;(d*=1.0000001)&gt;1;<br>
	&gt;}<br>
	&gt;now = new Date();<br>
	&gt;<br>
	&gt;text<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6255"  title="Adobe Flex: a question about code speed of flex">more</A>]]]></description> 
	<pubDate>Thu, 04 Feb 2010 10:08:00 GMT</pubDate> 
	<dc:author>harry wang </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6255</guid> 
</item>

<item>
	<title><![CDATA[a question about code speed of flex]]></title> 
	<description><![CDATA[&gt;What exactly are you demonstrating?&nbsp;&nbsp;What I see is that evaluating one<br>
	&gt;compound expression instead of two simpler expressions is about 12<br>
	&gt;times slower.&nbsp;&nbsp;Of course, the actual delta is measured in fractional<br>
	&gt;microseconds, so it's most likely due to <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6254"  title="Adobe Flex: a question about code speed of flex">more</A>]]]></description> 
	<pubDate>Thu, 04 Feb 2010 04:42:00 GMT</pubDate> 
	<dc:author>harry wang </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6254</guid> 
</item>



<item>
	<title><![CDATA[The Flex Authority Volume 1, Issue 2 is out now]]></title> 
	<description><![CDATA[If you want your Flex skills to be up-to-date then you need the Flex Authority. The current issue is all about Components: The Building Blocks of Your Applications.
	
	Order now]]></description> 
	<guid>http://www.flex-authority.com/issues/components-application-building-blocks/</guid>
	<pubDate>Fri, 19 Mar 2010 02:30:39 GMT</pubDate> 
	<dc:author>Flex Authority</dc:author> 
</item>

<item>
	<title><![CDATA[a question about code speed of flex]]></title> 
	<description><![CDATA[What exactly are you demonstrating?&nbsp;&nbsp;What I see is that evaluating one<br>
	compound expression instead of two simpler expressions is about 12<br>
	times slower.&nbsp;&nbsp;Of course, the actual delta is measured in fractional<br>
	microseconds, so it's most likely due to <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6253"  title="Adobe Flex: a question about code speed of flex">more</A>]]]></description> 
	<pubDate>Wed, 03 Feb 2010 10:18:00 GMT</pubDate> 
	<dc:author>Barney Boisvert </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6253</guid> 
</item>

<item>
	<title><![CDATA[a question about code speed of flex]]></title> 
	<description><![CDATA[CODE 1<br>
	<br>
	function test():void{<br>
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var loop:int = 0;<br>
	var i:int = 0;<br>
	var j:int = 0;<br>
	var now:Date = new Date();<br>
	var d:Number = 1.1;<br>
	for(i=0;i&lt;10;i++){<br>
	for(j=0;j&lt;10000000;j++){<br>
	 <br>
	&nbsp;&nbsp;(d*=1.0000001)&gt;1;<br>
	}<br>
	now = new Date();<br>
	<br>
	text.text+=(&quot;&quot;+now.<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6252"  title="Adobe Flex: a question about code speed of flex">more</A>]]]></description> 
	<pubDate>Wed, 03 Feb 2010 10:06:00 GMT</pubDate> 
	<dc:author>harry wang </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6252</guid> 
</item>

<item>
	<title><![CDATA[Embed a swf music player]]></title> 
	<description><![CDATA[Hey all,<br>
	<br>
	This one is probably simpler.&nbsp;&nbsp;I'm working on a site for a musician.&nbsp;&nbsp;She has her tracks hosted with a streaming service that has provided the following embed tag:<br>
	<br>
	&lt;embed type=&quot;application/x-shockwave-flash&quot;&nbsp;&nbsp;src=&quot;http://cache.reverbnation.<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6213"  title="Adobe Flex: Embed a swf music player">more</A>]]]></description> 
	<pubDate>Wed, 16 Dec 2009 11:15:00 GMT</pubDate> 
	<dc:author>Willy Ray </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6213</guid> 
</item>

<item>
	<title><![CDATA[connecting Flex & ColdFusion ]]></title> 
	<description><![CDATA[Hi paul,<br>
	Thanks so very much!! I looked at the code over and over and never saw this silly error:(<br>
	I even wrote a full blog post saying that flex did not like plural methods of maybe it was a caching issue, but I see it was a sill typo of mine:)<br>
	<br>
	I <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6209"  title="Adobe Flex: connecting Flex & CF">more</A>]]]></description> 
	<pubDate>Mon, 14 Dec 2009 06:55:00 GMT</pubDate> 
	<dc:author>John  Barrett </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6209</guid> 
</item>

<item>
	<title><![CDATA[connecting Flex & ColdFusion  ]]></title> 
	<description><![CDATA[On 12/14/2009 4:51 PM, John Barrett wrote:<br>
	<br>
	&gt; I think that Flex is looking for a function getArtist, but the method is getArtists. I wrote a blog on this,maybe the blog is more clear, and I have tested the cfc which is working properly too:<br>
	&gt; http://<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6208"  title="Adobe Flex: connecting Flex & CF ">more</A>]]]></description> 
	<pubDate>Mon, 14 Dec 2009 04:26:00 GMT</pubDate> 
	<dc:author>Paul Hastings </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6208</guid> 
</item>

<item>
	<title><![CDATA[connecting Flex & ColdFusion ]]></title> 
	<description><![CDATA[Hi Paul,<br>
	Thanks so much for your help!<br>
	<br>
	the file is locate in the webroot (not sure if this is&nbsp;&nbsp;a best practice, but just on localhost for testing)<br>
	/Documents/Library/WebServer/com/cfcs/ArtistGateway.cfc (http://localhost/com/cfcs/ArtistGateway.cfc<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6207"  title="Adobe Flex: connecting Flex & CF">more</A>]]]></description> 
	<pubDate>Mon, 14 Dec 2009 03:03:00 GMT</pubDate> 
	<dc:author>John  Barrett </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6207</guid> 
</item>

<item>
	<title><![CDATA[connecting Flex & ColdFusion  ]]></title> 
	<description><![CDATA[On 12/14/2009 2:00 PM, John Barrett wrote:<br>
	&gt; 	&lt;mx:RemoteObject id=&quot;ArtistGateway_RO&quot; destination = &quot;ColdFusion&quot; source =&quot;com.cfcs.ArtistGateway&quot;&gt;<br>
	<br>
	is &quot;com&quot; under the web root or cf mapped? if cf mapped, did you change <br>
	remoting-config.xml use mapping <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6206"  title="Adobe Flex: connecting Flex & CF ">more</A>]]]></description> 
	<pubDate>Mon, 14 Dec 2009 01:40:00 GMT</pubDate> 
	<dc:author>Paul Hastings </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6206</guid> 
</item>

<item>
	<title><![CDATA[connecting Flex & ColdFusion ]]></title> 
	<description><![CDATA[Hi,<br>
	I am trying to connect CF &amp; Flex with remoting. I got flex set up for remoting, and I have this flex code:<br>
	&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;<br>
	&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; layout=&quot;absolute&quot; creationComplete=&quot;initApp<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6205"  title="Adobe Flex: connecting Flex & CF">more</A>]]]></description> 
	<pubDate>Mon, 14 Dec 2009 12:09:00 GMT</pubDate> 
	<dc:author>John  Barrett </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6205</guid> 
</item>

<item>
	<title><![CDATA[How To Chart This Data]]></title> 
	<description><![CDATA[I want a line chart with a line for each row returned from a ColdFusion query. The data looks something like this, but the number of rows returned is user selectable:<br>
	<br>
	Fields: Description|2007|2008|2009|<br>
	Row1: Personnel Services|1111|1155|1298|<br>
	Row2: <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6202"  title="Adobe Flex: How To Chart This Data">more</A>]]]></description> 
	<pubDate>Wed, 09 Dec 2009 01:32:00 GMT</pubDate> 
	<dc:author>Steve Moore </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6202</guid> 
</item>

<item>
	<title><![CDATA[Xcelsius]]></title> 
	<description><![CDATA[This post may be a bit off topic, but I figured this would be the best place to ask. <br>
	<br>
	I currently have a situation where a dashboard product produced with flex is, for some reason, is competing against the idea of Xcelsius as a replacement. Basically <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6201"  title="Adobe Flex: Xcelsius">more</A>]]]></description> 
	<pubDate>Fri, 04 Dec 2009 10:52:00 GMT</pubDate> 
	<dc:author>Wes Middendorff </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6201</guid> 
</item>

<item>
	<title><![CDATA[Clear a RadioButtonGroup with binding?]]></title> 
	<description><![CDATA[Hey y'all,<br>
	<br>
	here's my latest puzzler:<br>
	<br>
	I have a form with a radiobuttongroup.<br>
	<br>
	I have a field in a bean that the selectedValue is bound to.&nbsp;&nbsp;When the bean gets updated, and the value in the bean.field matches one of the radiobutton values, it sets <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6200"  title="Adobe Flex: Clear a RadioButtonGroup with binding?">more</A>]]]></description> 
	<pubDate>Thu, 03 Dec 2009 04:53:00 GMT</pubDate> 
	<dc:author>Willy Ray </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6200</guid> 
</item>

<item>
	<title><![CDATA[Flex and Reports]]></title> 
	<description><![CDATA[&gt; That is what I tried.&nbsp;&nbsp;I keep getting an error that I'm trying to <br>
	&gt; figure out.&nbsp;&nbsp;It's an odd one.<br>
	&gt; <br>
	&gt; Channel disconnected before an acknowledgement was received.<br>
	&gt; <br>
	&gt; I call the cfc in flex who gets the query info and sends it to the <br>
	&gt; report<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6194"  title="Adobe Flex: Flex and Reports">more</A>]]]></description> 
	<pubDate>Sun, 29 Nov 2009 11:18:00 GMT</pubDate> 
	<dc:author>Kim Hoopingarner </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6194</guid> 
</item>

<item>
	<title><![CDATA[Flex text area issues    highlight an cursor position]]></title> 
	<description><![CDATA[Hey guys,<br>
	<br>
	I'm struggling with a couple of things with a flex text area.<br>
	<br>
	I'm accustomed to the JTextArea control from Swing... and I can really<br>
	very easily create a highlighter and tell it to highlight a certain<br>
	span of text... I'm not seeing a <BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6191"  title="Adobe Flex: Flex text area issues... highlight an cursor position">more</A>]]]></description> 
	<pubDate>Fri, 20 Nov 2009 11:50:00 GMT</pubDate> 
	<dc:author>Willy Ray </dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6191</guid> 
</item>

<item>
	<title><![CDATA[Synchronized Video Playback]]></title> 
	<description><![CDATA[Hi,<br>
	<br>
	I am creating a synchronized playback experience for a group of users around<br>
	a video.&nbsp;&nbsp;I don't have control over the video player, so I am writing a<br>
	protocol where the different users send messages to each other to stay in<br>
	sync.<br>
	<br>
	<BR> [<A href="http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6187"  title="Adobe Flex: Synchronized Video Playback">more</A>]]]></description> 
	<pubDate>Wed, 11 Nov 2009 11:46:00 GMT</pubDate> 
	<dc:author>Karthik Kailash</dc:author> 
	<guid>http://www.houseoffusion.com/groups/flex/message.cfm/messageid:6187</guid> 
</item>

<item>
	<title><![CDATA[The Fusion Authority Quarterly Update Volume 3, Issue 1 is out now]]></title> 
	<description><![CDATA[If you want your ColdFusion skills to be up-to-date then you need the Fusion Authority Quarterly Update. The current issue is all about Data and how to make it work for you. Just what we all need.
	
	Order now]]></description> 
	<guid>http://www.fusionauthority.com/quarterly/data-how-to-make-it-work-for-you/</guid>
	<pubDate>Fri, 19 Mar 2010 02:30:39 GMT</pubDate> 
	<dc:author>Fusion Authority</dc:author> 
</item>


</channel>
</rss>

