<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-597</id>
	<title>Nabble - Cold Fusion - Flash</title>
	<updated>2009-05-20T14:40:17Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Cold-Fusion---Flash-f597.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cold-Fusion---Flash-f597.html" />
	<subtitle type="html">This list is for discussion about using ColdFusion with Flash. This is not a general Flash list.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-23644062</id>
	<title>Re: flash remoting and refreshing a grid after database update</title>
	<published>2009-05-20T14:40:17Z</published>
	<updated>2009-05-20T14:40:17Z</updated>
	<author>
		<name>Tyron Foston</name>
	</author>
	<content type="html">&lt;br&gt;was that the min amount of server sleep needed? did i work at say .1 seconds?
&lt;br&gt;&lt;br&gt;Tyron E. Foston
&lt;br&gt;&lt;br&gt;Comedy Style: Industrial Strength
&lt;br&gt;&lt;br&gt;Http://www.TyronFoston.com
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/tyronfoston&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/tyronfoston&lt;/a&gt;&lt;br&gt;&lt;br&gt;--- On Wed, 5/20/09, tim barth &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23644062&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tim@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: tim barth &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23644062&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tim@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: Re: flash remoting and refreshing a grid after database update
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23644062&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Wednesday, May 20, 2009, 12:17 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;I figured this out ... put a 1/4 second sleep in each of the get data cfcs - works like a charm.
&lt;br&gt;&lt;br&gt;Using this code before I retrieve a query in my CFC:
&lt;br&gt;&amp;lt;cfscript&amp;gt;
&lt;br&gt;      thread = CreateObject(&amp;quot;java&amp;quot;, &amp;quot;java.lang.Thread&amp;quot;);
&lt;br&gt;      thread.sleep(250);
&lt;br&gt;&amp;lt;/cfscript&amp;gt;
&lt;br&gt;&lt;br&gt;...that way the CFC retrieving data waits for the updating CFC to finish.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I am using flash remoting to update data and refresh a grid in a flash 
&lt;br&gt;&amp;gt; cfform.  My goal is to have the user update data in the form (creating 
&lt;br&gt;&amp;gt; a call to a CFC that that performs a SQL update), then to update the 
&lt;br&gt;&amp;gt; data in a grid.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Problem is that when I try to make the two events (update, display) 
&lt;br&gt;&amp;gt; happen in sequence, they seem to happen at the same time such that the 
&lt;br&gt;&amp;gt; data in the grid usually does not reflect the change the user just 
&lt;br&gt;&amp;gt; made to the database.  If I make the grid data load function 
&lt;br&gt;&amp;gt; independent of the update function (forcing the user to click a 
&lt;br&gt;&amp;gt; button), the grid refreshes fine.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm sure I am missing something simple ... any help?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Simplified examples:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have tried multiple function calls tied to the button:
&lt;br&gt;&amp;gt; onclick=&amp;quot;updatethedata('test1','test2'); refreshthegrid();&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; and I have tried putting that stuff in the scripts in my cfform as 
&lt;br&gt;&amp;gt; well:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; function updatethedata(param1:String, param2:String){
&lt;/div&gt;     
&lt;br&gt;&amp;gt; var responseHandler = {};
&lt;br&gt;     
&lt;br&gt;&amp;gt; var testresult:String;
&lt;br&gt;     
&lt;br&gt;&amp;gt; responseHandler.onResult = function( results: Object ):Void {
&lt;br&gt;         
&lt;br&gt;&amp;gt; //when results are back, populate the grid -- the function is being 
&lt;br&gt;&amp;gt; called, but it pulls data before the database is updated with data
&lt;br&gt;         
&lt;br&gt;&amp;gt; refreshthegrid();
&lt;br&gt;     
&lt;br&gt;&amp;gt; }
&lt;br&gt;     
&lt;br&gt;&amp;gt; responseHandler.onStatus  = function( stat: Object ):Void {
&lt;br&gt;         
&lt;br&gt;&amp;gt; //if there is any error, show an alert
&lt;br&gt;         
&lt;br&gt;&amp;gt; alert(&amp;quot;Error while calling cfc:&amp;quot; + stat.description);
&lt;br&gt;     
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;     
&lt;br&gt;&amp;gt; // do the update
&lt;br&gt;     
&lt;br&gt;&amp;gt; myService = connection.getService(&amp;quot;flashRemotingResponder&amp;quot;, 
&lt;br&gt;&amp;gt; responseHandler );
&lt;br&gt;     
&lt;br&gt;&amp;gt; &amp;lt;cfoutput&amp;gt;
&lt;br&gt;     
&lt;br&gt;&amp;gt; var connection:mx.remoting.Connection = mx.remoting.NetServices.
&lt;br&gt;&amp;gt; createGatewayConnection(&amp;quot;&lt;a href=&quot;http://#cgi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://#cgi&lt;/a&gt;.
&lt;br&gt;&amp;gt; HTTP_HOST#/flashservices/gateway/&amp;quot;);
&lt;br&gt;    
&lt;br&gt;&amp;gt; var myService:mx.remoting.NetServiceProxy;
&lt;br&gt;    
&lt;br&gt;&amp;gt; myService = connection.getService(&amp;quot;flashRemotingResponder&amp;quot;, 
&lt;br&gt;&amp;gt; responseHandler);
&lt;br&gt;   
&lt;br&gt;&amp;gt; myService.updateRegistrant(param1,param2);
&lt;br&gt;   
&lt;br&gt;&amp;gt; &amp;lt;/cfoutput&amp;gt; 
&lt;br&gt;&amp;gt; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists
&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:300&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:300&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/flash-remoting-and-refreshing-a-grid-after-database-update-tp23630552p23644062.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23638892</id>
	<title>Re: flash remoting and refreshing a grid after database update</title>
	<published>2009-05-20T09:17:46Z</published>
	<updated>2009-05-20T09:17:46Z</updated>
	<author>
		<name>tim barth</name>
	</author>
	<content type="html">&lt;br&gt;I figured this out ... put a 1/4 second sleep in each of the get data cfcs - works like a charm.
&lt;br&gt;&lt;br&gt;Using this code before I retrieve a query in my CFC:
&lt;br&gt;&amp;lt;cfscript&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; thread = CreateObject(&amp;quot;java&amp;quot;, &amp;quot;java.lang.Thread&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; thread.sleep(250);
&lt;br&gt;&amp;lt;/cfscript&amp;gt;
&lt;br&gt;&lt;br&gt;...that way the CFC retrieving data waits for the updating CFC to finish.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I am using flash remoting to update data and refresh a grid in a flash 
&lt;br&gt;&amp;gt; cfform. &amp;nbsp;My goal is to have the user update data in the form (creating 
&lt;br&gt;&amp;gt; a call to a CFC that that performs a SQL update), then to update the 
&lt;br&gt;&amp;gt; data in a grid.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Problem is that when I try to make the two events (update, display) 
&lt;br&gt;&amp;gt; happen in sequence, they seem to happen at the same time such that the 
&lt;br&gt;&amp;gt; data in the grid usually does not reflect the change the user just 
&lt;br&gt;&amp;gt; made to the database. &amp;nbsp;If I make the grid data load function 
&lt;br&gt;&amp;gt; independent of the update function (forcing the user to click a 
&lt;br&gt;&amp;gt; button), the grid refreshes fine.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm sure I am missing something simple ... any help?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Simplified examples:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have tried multiple function calls tied to the button:
&lt;br&gt;&amp;gt; onclick=&amp;quot;updatethedata('test1','test2'); refreshthegrid();&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; and I have tried putting that stuff in the scripts in my cfform as 
&lt;br&gt;&amp;gt; well:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; function updatethedata(param1:String, param2:String){
&lt;/div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; var responseHandler = {};
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; var testresult:String;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; responseHandler.onResult = function( results: Object ):Void {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; //when results are back, populate the grid -- the function is being 
&lt;br&gt;&amp;gt; called, but it pulls data before the database is updated with data
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; refreshthegrid();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; responseHandler.onStatus &amp;nbsp;= function( stat: Object ):Void {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; //if there is any error, show an alert
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; alert(&amp;quot;Error while calling cfc:&amp;quot; + stat.description);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; // do the update
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; myService = connection.getService(&amp;quot;flashRemotingResponder&amp;quot;, 
&lt;br&gt;&amp;gt; responseHandler );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;lt;cfoutput&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; var connection:mx.remoting.Connection = mx.remoting.NetServices.
&lt;br&gt;&amp;gt; createGatewayConnection(&amp;quot;&lt;a href=&quot;http://#cgi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://#cgi&lt;/a&gt;.
&lt;br&gt;&amp;gt; HTTP_HOST#/flashservices/gateway/&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; var myService:mx.remoting.NetServiceProxy;
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; myService = connection.getService(&amp;quot;flashRemotingResponder&amp;quot;, 
&lt;br&gt;&amp;gt; responseHandler);
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; myService.updateRegistrant(param1,param2);
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;lt;/cfoutput&amp;gt; 
&lt;br&gt;&amp;gt; }
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists
&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:299&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:299&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/flash-remoting-and-refreshing-a-grid-after-database-update-tp23630552p23638892.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23630552</id>
	<title>flash remoting and refreshing a grid after database update</title>
	<published>2009-05-20T00:35:11Z</published>
	<updated>2009-05-20T00:35:11Z</updated>
	<author>
		<name>tim barth</name>
	</author>
	<content type="html">&lt;br&gt;I am using flash remoting to update data and refresh a grid in a flash cfform. &amp;nbsp;My goal is to have the user update data in the form (creating a call to a CFC that that performs a SQL update), then to update the data in a grid.
&lt;br&gt;&lt;br&gt;Problem is that when I try to make the two events (update, display) happen in sequence, they seem to happen at the same time such that the data in the grid usually does not reflect the change the user just made to the database. &amp;nbsp;If I make the grid data load function independent of the update function (forcing the user to click a button), the grid refreshes fine.
&lt;br&gt;&lt;br&gt;I'm sure I am missing something simple ... any help?
&lt;br&gt;&lt;br&gt;Simplified examples:
&lt;br&gt;&lt;br&gt;I have tried multiple function calls tied to the button:
&lt;br&gt;onclick=&amp;quot;updatethedata('test1','test2'); refreshthegrid();&amp;quot;
&lt;br&gt;&lt;br&gt;and I have tried putting that stuff in the scripts in my cfform as well:
&lt;br&gt;&lt;br&gt;function updatethedata(param1:String, param2:String){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var responseHandler = {};
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var testresult:String;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;responseHandler.onResult = function( results: Object ):Void {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//when results are back, populate the grid -- the function is being called, but it pulls data before the database is updated with data
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;refreshthegrid();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;responseHandler.onStatus &amp;nbsp;= function( stat: Object ):Void {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//if there is any error, show an alert
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;alert(&amp;quot;Error while calling cfc:&amp;quot; + stat.description);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;// do the update
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;myService = connection.getService(&amp;quot;flashRemotingResponder&amp;quot;, responseHandler );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;cfoutput&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var connection:mx.remoting.Connection = mx.remoting.NetServices.createGatewayConnection(&amp;quot;&lt;a href=&quot;http://#cgi.HTTP_HOST#/flashservices/gateway/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://#cgi.HTTP_HOST#/flashservices/gateway/&lt;/a&gt;&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; var myService:mx.remoting.NetServiceProxy;
&lt;br&gt;&amp;nbsp; &amp;nbsp; myService = connection.getService(&amp;quot;flashRemotingResponder&amp;quot;, responseHandler);
&lt;br&gt;&amp;nbsp; &amp;nbsp;myService.updateRegistrant(param1,param2);
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/cfoutput&amp;gt; 
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists
&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:298&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:298&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/flash-remoting-and-refreshing-a-grid-after-database-update-tp23630552p23630552.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22944870</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-08T00:28:34Z</published>
	<updated>2009-04-08T00:28:34Z</updated>
	<author>
		<name>John  Barrett</name>
	</author>
	<content type="html">&lt;br&gt;Hi Tyron,
&lt;br&gt;Thank you so much I finally got a chance to go over this tonight. 
&lt;br&gt;I get a undefined in the output window. i will be playing with this tonight, as I really want to start getting into flash remoting with AS 3!
&lt;br&gt;&lt;br&gt;I will post a blog about this so you see the error I get with my cfc to see if I am really missing something.
&lt;br&gt;&lt;a href=&quot;http://blog.meleana.info/?p=361&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.meleana.info/?p=361&lt;/a&gt;&lt;br&gt;&lt;br&gt;(if you don't want this on my blog I will remove it)
&lt;br&gt;&lt;br&gt;By the way, Could I get you to put together a flash remoting with coldfusion presentation for my flash user group here in Hawaii?
&lt;br&gt;by group:
&lt;br&gt;&lt;a href=&quot;http://groups.adobe.com/groups/f2c9628980/summary&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/groups/f2c9628980/summary&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks so much,
&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;From: Tyron Foston &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tfoston@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: cf-flash &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Monday, April 6, 2009 1:10:43 PM
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;&lt;br&gt;&lt;br&gt;Attached is the link to the flashremoting script if you didn't get the attachment in the email
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://test.skyxl.com/actionscript/flashremoting.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://test.skyxl.com/actionscript/flashremoting.zip&lt;/a&gt;&lt;br&gt;&lt;br&gt;I hope this provides some benefit to someone!
&lt;br&gt;&lt;br&gt;--- On Sat, 4/4/09, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Saturday, April 4, 2009, 10:37 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi Tyron,
&lt;br&gt;thanks so much for your help`-`
&lt;br&gt;I found an example on flash-db. Seems like there is an error in there code, as I get &amp;quot;TypeError: Error #1034: Type Coercion failed: cannot convert Object@d7fe101 to flash.events.Event.&amp;quot;
&lt;br&gt;&lt;br&gt;Is this because of not looping through the object to get the data?
&lt;br&gt;Thanks again for your help,
&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;From: Tyron Foston &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tfoston@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: cf-flash &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Saturday, April 4, 2009 4:21:02 AM
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;&lt;br&gt;&lt;br&gt;In as2, you could pass a recordset back to the flash but in as3, the recordset object is only for adobe air. So when you pass a recordset back into as3, it comes into the flash player as an object instead of a recordset, so you'll have to loop through the object to get the data
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On Fri, 4/3/09, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22944870&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Friday, April 3, 2009, 10:38 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;I finally got flash a ColdFusion to talk to each other, and now I am trying to query a database and display those results in a AS 3 datagrid in flash.
&lt;br&gt;&lt;br&gt;Can somebody help me out with this, or if you know a blog or tutorial that might help me I would really appreciate it. I found some using php, but I am using cfcs.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;John 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:297&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:297&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22944870.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22919337</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-06T16:10:43Z</published>
	<updated>2009-04-06T16:10:43Z</updated>
	<author>
		<name>Tyron Foston</name>
	</author>
	<content type="html">&lt;br&gt;Attached is the link to the flashremoting script if you didn't get the attachment in the email
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://test.skyxl.com/actionscript/flashremoting.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://test.skyxl.com/actionscript/flashremoting.zip&lt;/a&gt;&lt;br&gt;&lt;br&gt;I hope this provides some benefit to someone!
&lt;br&gt;&lt;br&gt;--- On Sat, 4/4/09, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919337&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919337&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919337&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Saturday, April 4, 2009, 10:37 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi Tyron,
&lt;br&gt;thanks so much for your help`-`
&lt;br&gt;I found an example on flash-db. Seems like there is an error in there code, as I get &amp;quot;TypeError: Error #1034: Type Coercion failed: cannot convert Object@d7fe101 to flash.events.Event.&amp;quot;
&lt;br&gt;&lt;br&gt;Is this because of not looping through the object to get the data?
&lt;br&gt;Thanks again for your help,
&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;From: Tyron Foston &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919337&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tfoston@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: cf-flash &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919337&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Saturday, April 4, 2009 4:21:02 AM
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;&lt;br&gt;&lt;br&gt;In as2, you could pass a recordset back to the flash but in as3, the recordset object is only for adobe air. So when you pass a recordset back into as3, it comes into the flash player as an object instead of a recordset, so you'll have to loop through the object to get the data
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On Fri, 4/3/09, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919337&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919337&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919337&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Friday, April 3, 2009, 10:38 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;I finally got flash a ColdFusion to talk to each other, and now I am trying to query a database and display those results in a AS 3 datagrid in flash.
&lt;br&gt;&lt;br&gt;Can somebody help me out with this, or if you know a blog or tutorial that might help me I would really appreciate it. I found some using php, but I am using cfcs.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;John 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:296&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:296&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22919337.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22919224</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-06T16:00:37Z</published>
	<updated>2009-04-06T16:00:37Z</updated>
	<author>
		<name>Tyron Foston</name>
	</author>
	<content type="html">&lt;br&gt;How To Use the AS3 FlashRemoting Class
&lt;br&gt;&lt;br&gt;1) Create an instance of the FlashRemoting class
&lt;br&gt;   -The constructor takes the location of the flash
&lt;br&gt;   remoting servcie as its only parameter
&lt;br&gt;&lt;br&gt;2) Set a &amp;quot;onLoad&amp;quot; handler to handle the results coming
&lt;br&gt;   from the server
&lt;br&gt;&lt;br&gt;3) Use the &amp;quot;load&amp;quot; function to send a flash remtoing call
&lt;br&gt;   to the coldfusion server. This takes 2 parameters
&lt;br&gt;   a) the cfc and function you want to call
&lt;br&gt;   b) parameter. This only takes 1 parameter. If you want
&lt;br&gt;      to pass multiple variables, place then into an object
&lt;br&gt;      and pass the object
&lt;br&gt;&lt;br&gt;4) There is a function called &amp;quot;toQuery&amp;quot; that takes a recordset
&lt;br&gt;   from coldfusion and turns it into an object with index arrays
&lt;br&gt;   
&lt;br&gt;&lt;br&gt;&lt;br&gt;Working Example
&lt;br&gt;---------------------------------------------------------------
&lt;br&gt;//Create an indexed array with values, this will be the parameters passed to the coldfusion server
&lt;br&gt;var array = new Array()
&lt;br&gt;array[0] = 'car'
&lt;br&gt;array[1] = 'boat'
&lt;br&gt;array[2] = 'ship'
&lt;br&gt;&lt;br&gt;//Create new instance of the FlashRemoting Class
&lt;br&gt;var fr:FlashRemoting = new FlashRemoting('&lt;a href=&quot;http://www.mydomain.com/flashservices/gateway'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mydomain.com/flashservices/gateway'&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;//Set the onLoad handler for when the flash gets the server response
&lt;br&gt;fr.onLoad = function(obj){
&lt;br&gt;    
&lt;br&gt;    //I'm expecting a query, so use the &amp;quot;toQuery&amp;quot; function
&lt;br&gt;    var myQuery = this.toQuery(obj)
&lt;br&gt;    
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;//Call the method on the remoting cfc (relative to the gateway url)
&lt;br&gt;fr.load('nameOfCFC.nameOfFunction', array)
&lt;br&gt;&lt;br&gt;--- On Sat, 4/4/09, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919224&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919224&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919224&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Saturday, April 4, 2009, 10:37 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi Tyron,
&lt;br&gt;thanks so much for your help`-`
&lt;br&gt;I found an example on flash-db. Seems like there is an error in there code, as I get &amp;quot;TypeError: Error #1034: Type Coercion failed: cannot convert Object@d7fe101 to flash.events.Event.&amp;quot;
&lt;br&gt;&lt;br&gt;Is this because of not looping through the object to get the data?
&lt;br&gt;Thanks again for your help,
&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;From: Tyron Foston &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919224&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tfoston@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: cf-flash &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919224&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Saturday, April 4, 2009 4:21:02 AM
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;&lt;br&gt;&lt;br&gt;In as2, you could pass a recordset back to the flash but in as3, the recordset object is only for adobe air. So when you pass a recordset back into as3, it comes into the flash player as an object instead of a recordset, so you'll have to loop through the object to get the data
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On Fri, 4/3/09, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919224&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919224&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22919224&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Friday, April 3, 2009, 10:38 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;I finally got flash a ColdFusion to talk to each other, and now I am trying to query a database and display those results in a AS 3 datagrid in flash.
&lt;br&gt;&lt;br&gt;Can somebody help me out with this, or if you know a blog or tutorial that might help me I would really appreciate it. I found some using php, but I am using cfcs.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;John 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:295&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:295&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22919224.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22890435</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-04T19:37:23Z</published>
	<updated>2009-04-04T19:37:23Z</updated>
	<author>
		<name>John  Barrett</name>
	</author>
	<content type="html">&lt;br&gt;Hi Tyron,
&lt;br&gt;thanks so much for your help`-`
&lt;br&gt;I found an example on flash-db. Seems like there is an error in there code, as I get &amp;quot;TypeError: Error #1034: Type Coercion failed: cannot convert Object@d7fe101 to flash.events.Event.&amp;quot;
&lt;br&gt;&lt;br&gt;Is this because of not looping through the object to get the data?
&lt;br&gt;Thanks again for your help,
&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;From: Tyron Foston &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22890435&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tfoston@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: cf-flash &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22890435&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Saturday, April 4, 2009 4:21:02 AM
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;&lt;br&gt;&lt;br&gt;In as2, you could pass a recordset back to the flash but in as3, the recordset object is only for adobe air. So when you pass a recordset back into as3, it comes into the flash player as an object instead of a recordset, so you'll have to loop through the object to get the data
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On Fri, 4/3/09, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22890435&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22890435&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22890435&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Friday, April 3, 2009, 10:38 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;I finally got flash a ColdFusion to talk to each other, and now I am trying to query a database and display those results in a AS 3 datagrid in flash.
&lt;br&gt;&lt;br&gt;Can somebody help me out with this, or if you know a blog or tutorial that might help me I would really appreciate it. I found some using php, but I am using cfcs.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;John 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:294&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:294&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22890435.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22890420</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-04T19:33:22Z</published>
	<updated>2009-04-04T19:33:22Z</updated>
	<author>
		<name>John  Barrett</name>
	</author>
	<content type="html">&lt;br&gt;Hi Chris,
&lt;br&gt;thanks`-`
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;From: Chris Velevitch &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22890420&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chris.velevitch@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: cf-flash &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22890420&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Friday, April 3, 2009 9:27:28 PM
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;&lt;br&gt;&lt;br&gt;For AS3 look at flash.net.NetConnection and any articles around it.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;--
&lt;br&gt;Chris Velevitch
&lt;br&gt;Manager - Adobe Platform Users Group, Sydney
&lt;br&gt;m: 0415 469 095
&lt;br&gt;www.apugs.org.au
&lt;br&gt;&lt;br&gt;Adobe Platform Users Group, Sydney
&lt;br&gt;April meeting: Mate Application Framework
&lt;br&gt;Date: Mon 27th April 6pm for 6:30 start
&lt;br&gt;Details and RSVP on &lt;a href=&quot;http://groups.adobe.com/posts/353d7bc050&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/posts/353d7bc050&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:293&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:293&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22890420.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22884173</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-04T07:21:02Z</published>
	<updated>2009-04-04T07:21:02Z</updated>
	<author>
		<name>Tyron Foston</name>
	</author>
	<content type="html">&lt;br&gt;In as2, you could pass a recordset back to the flash but in as3, the recordset object is only for adobe air. So when you pass a recordset back into as3, it comes into the flash player as an object instead of a recordset, so you'll have to loop through the object to get the data
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On Fri, 4/3/09, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22884173&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22884173&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22884173&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Friday, April 3, 2009, 10:38 PM
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;I finally got flash a ColdFusion to talk to each other, and now I am trying to query a database and display those results in a AS 3 datagrid in flash.
&lt;br&gt;&lt;br&gt;Can somebody help me out with this, or if you know a blog or tutorial that might help me I would really appreciate it. I found some using php, but I am using cfcs.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;John 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:292&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:292&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22884173.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22880816</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-04T00:27:28Z</published>
	<updated>2009-04-04T00:27:28Z</updated>
	<author>
		<name>Chris Velevitch</name>
	</author>
	<content type="html">&lt;br&gt;For AS3 look at flash.net.NetConnection and any articles around it.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;--
&lt;br&gt;Chris Velevitch
&lt;br&gt;Manager - Adobe Platform Users Group, Sydney
&lt;br&gt;m: 0415 469 095
&lt;br&gt;www.apugs.org.au
&lt;br&gt;&lt;br&gt;Adobe Platform Users Group, Sydney
&lt;br&gt;April meeting: Mate Application Framework
&lt;br&gt;Date: Mon 27th April 6pm for 6:30 start
&lt;br&gt;Details and RSVP on &lt;a href=&quot;http://groups.adobe.com/posts/353d7bc050&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/posts/353d7bc050&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:291&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:291&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22880816.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22880054</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-03T21:51:29Z</published>
	<updated>2009-04-03T21:51:29Z</updated>
	<author>
		<name>John  Barrett</name>
	</author>
	<content type="html">&lt;br&gt;Hi Chris,
&lt;br&gt;Thanks for getting back to me.
&lt;br&gt;I have searched adobe, as well as google and blogs that I know, but I can't find anything related to AS 3. 
&lt;br&gt;All the resources on Adobe is for AS 2.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;From: Chris Velevitch &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22880054&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chris.velevitch@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: cf-flash &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22880054&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Friday, April 3, 2009 6:11:44 PM
&lt;br&gt;Subject: Re: getting a datagrid to display data with CF &amp; remoting
&lt;br&gt;&lt;br&gt;&lt;br&gt;Do a search for &amp;quot;flash remoting coldfusion tutorials&amp;quot; on the Adobe
&lt;br&gt;Developer Connection website [1].
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://www.adobe.com/devnet&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.adobe.com/devnet&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;--
&lt;br&gt;Chris Velevitch
&lt;br&gt;Manager - Adobe Platform Users Group, Sydney
&lt;br&gt;m: 0415 469 095
&lt;br&gt;www.apugs.org.au
&lt;br&gt;&lt;br&gt;Adobe Platform Users Group, Sydney
&lt;br&gt;April meeting: Mate Application Framework
&lt;br&gt;Date: Mon 27th April 6pm for 6:30 start
&lt;br&gt;Details and RSVP on &lt;a href=&quot;http://groups.adobe.com/posts/353d7bc050&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/posts/353d7bc050&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:290&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:290&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22880054.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22879878</id>
	<title>Re: getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-03T21:11:44Z</published>
	<updated>2009-04-03T21:11:44Z</updated>
	<author>
		<name>Chris Velevitch</name>
	</author>
	<content type="html">&lt;br&gt;Do a search for &amp;quot;flash remoting coldfusion tutorials&amp;quot; on the Adobe
&lt;br&gt;Developer Connection website [1].
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://www.adobe.com/devnet&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.adobe.com/devnet&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;--
&lt;br&gt;Chris Velevitch
&lt;br&gt;Manager - Adobe Platform Users Group, Sydney
&lt;br&gt;m: 0415 469 095
&lt;br&gt;www.apugs.org.au
&lt;br&gt;&lt;br&gt;Adobe Platform Users Group, Sydney
&lt;br&gt;April meeting: Mate Application Framework
&lt;br&gt;Date: Mon 27th April 6pm for 6:30 start
&lt;br&gt;Details and RSVP on &lt;a href=&quot;http://groups.adobe.com/posts/353d7bc050&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/posts/353d7bc050&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:289&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:289&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22879878.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22879159</id>
	<title>getting a datagrid to display data with CF &amp; remoting</title>
	<published>2009-04-03T18:45:10Z</published>
	<updated>2009-04-03T18:45:10Z</updated>
	<author>
		<name>John  Barrett</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;I finally got flash a ColdFusion to talk to each other, and now I am trying to query a database and display those results in a AS 3 datagrid in flash.
&lt;br&gt;&lt;br&gt;Can somebody help me out with this, or if you know a blog or tutorial that might help me I would really appreciate it. I found some using php, but I am using cfcs.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;John 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:288&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:288&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/getting-a-datagrid-to-display-data-with-CF---remoting-tp22879159p22879159.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22570200</id>
	<title>cfform and required field issue</title>
	<published>2009-03-17T13:14:08Z</published>
	<updated>2009-03-17T13:14:08Z</updated>
	<author>
		<name>Imperial, Bob</name>
	</author>
	<content type="html">&lt;br&gt;I've run into something in my puttering with cfform type=&amp;quot;flash&amp;quot; and required fields. Pardon the cross posting as I realized that there was actually a list here that is probably more suited to my question. I have a test form setup at &lt;a href=&quot;http://domis.med.unc.edu/temp/testing.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://domis.med.unc.edu/temp/testing.cfm&lt;/a&gt;&amp;nbsp;The fields in question are the first name, last name and mr# using this block of code: &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;lt;cfformgroup type=&amp;quot;horizontal&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp;&amp;lt;cfformitem type=&amp;quot;text&amp;quot; width=&amp;quot;100&amp;quot; style=&amp;quot;text-align:right; font-size:10px;&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; First Name: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cfformitem&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfinput type=&amp;quot;text&amp;quot; name=&amp;quot;First_Name&amp;quot; width=&amp;quot;100&amp;quot; required=&amp;quot;yes&amp;quot; message=&amp;quot;Please enter a first name.&amp;quot; value=&amp;quot;&amp;quot; /&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfformitem type=&amp;quot;text&amp;quot; width=&amp;quot;100&amp;quot; style=&amp;quot;text-align:right; font-size:10px;&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Last Name: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cfformitem&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfinput type=&amp;quot;text&amp;quot; name=&amp;quot;Last_Name&amp;quot; width=&amp;quot;100&amp;quot; required=&amp;quot;yes&amp;quot; message=&amp;quot;Please enter a last name.&amp;quot; value=&amp;quot;&amp;quot; /&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfformitem type=&amp;quot;text&amp;quot; width=&amp;quot;50&amp;quot; style=&amp;quot;text-align:right; font-size:10px;&amp;quot;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MR##: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cfformitem&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfinput type=&amp;quot;text&amp;quot; name=&amp;quot;MR_Num&amp;quot; width=&amp;quot;50&amp;quot; required=&amp;quot;yes&amp;quot; validateat=&amp;quot;onsubmit&amp;quot; value=&amp;quot;&amp;quot; /&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/cfformgroup&amp;gt; &amp;nbsp;The &amp;quot;First Name&amp;quot; displays the standard red asterisk properly but not the &amp;quot;Last Name or MR#&amp;quot;. Can someone enlighten me as to why this doesn't display on the other two fields please? TIA Bob
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:287&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:287&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cfform-and-required-field-issue-tp22570200p22570200.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21552426</id>
	<title>Re: Validate form data on tab before moving to next tab in flash  cfform</title>
	<published>2009-01-19T13:53:52Z</published>
	<updated>2009-01-19T13:53:52Z</updated>
	<author>
		<name>Chris Velevitch</name>
	</author>
	<content type="html">It should work the same way because all you are doing is changing the
&lt;br&gt;the cfformgroup to be type tabnavigator instead of accordian.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;--
&lt;br&gt;Chris Velevitch
&lt;br&gt;Manager - Adobe Platform Users Group, Sydney
&lt;br&gt;m: 0415 469 095
&lt;br&gt;www.apugs.org.au
&lt;br&gt;&lt;br&gt;Adobe Platform Users Group, Sydney
&lt;br&gt;January '09 meeting: Looking Ahead To The Next Version Of Flex Builder
&lt;br&gt;Date: Mon 19th January 6pm for 6:30 start
&lt;br&gt;Details and RSVP &lt;a href=&quot;http://groups.adobe.com/posts/b3ccf0d972&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/posts/b3ccf0d972&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:286&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:286&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Validate-form-data-on-tab-before-moving--to-next-tab-in-flash-cfform-tp21550906p21552426.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21552219</id>
	<title>Re: dynamically set required attribute in cfform flash</title>
	<published>2009-01-19T13:42:44Z</published>
	<updated>2009-01-19T13:42:44Z</updated>
	<author>
		<name>Chris Velevitch</name>
	</author>
	<content type="html">&amp;lt;cfsavecontent variable=&amp;quot;checkBoxChanged&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;if (Checkbox.selected == true) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mx.validators.Validator.enable( this, &amp;quot;myform.DateField&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp;} else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mx.validators.Validator.disable( this, &amp;quot;myform.DateField&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;lt;/cfsavecontent&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfinput type=&amp;quot;Checkbox&amp;quot; name=&amp;quot;haskeys&amp;quot; &amp;nbsp;label=&amp;quot;I have my keys&amp;quot;
&lt;br&gt;visible=&amp;quot;Yes&amp;quot; enabled=&amp;quot;Yes&amp;quot; onChange=&amp;quot;#checkboxChanged#&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;--
&lt;br&gt;Chris Velevitch
&lt;br&gt;Manager - Adobe Platform Users Group, Sydney
&lt;br&gt;m: 0415 469 095
&lt;br&gt;www.apugs.org.au
&lt;br&gt;&lt;br&gt;Adobe Platform Users Group, Sydney
&lt;br&gt;January '09 meeting: Looking Ahead To The Next Version Of Flex Builder
&lt;br&gt;Date: Mon 19th January 6pm for 6:30 start
&lt;br&gt;Details and RSVP &lt;a href=&quot;http://groups.adobe.com/posts/b3ccf0d972&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/posts/b3ccf0d972&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:285&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:285&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/dynamically-set-required-attribute-in-cfform-flash-tp21507463p21552219.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21550906</id>
	<title>Validate form data on tab before moving  to next tab in flash cfform</title>
	<published>2009-01-19T12:26:37Z</published>
	<updated>2009-01-19T12:26:37Z</updated>
	<author>
		<name>Eileen Collins</name>
	</author>
	<content type="html">I found code on how to validate page data within accordian cfformgroup and that works great but I wanted my form to use tabnavigator instead of accordian.
&lt;br&gt;&lt;br&gt;How do you validate form data on a tab (page) within tab navigator of cfform (flash) before moving to next tab? 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:284&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:284&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Validate-form-data-on-tab-before-moving--to-next-tab-in-flash-cfform-tp21550906p21550906.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21550900</id>
	<title>Re: dynamically set required attribute in cfform flash</title>
	<published>2009-01-19T12:24:37Z</published>
	<updated>2009-01-19T12:24:37Z</updated>
	<author>
		<name>Eileen Collins</name>
	</author>
	<content type="html">Thanks Chris, that article was helpful. I can use it with some tweaking. What I wanted was to set the field required only if the checkbox was checked. I tried the code on the article page and changed the required =&amp;quot;no&amp;quot; and then click 'enable' button, but nothing happened.
&lt;br&gt;&lt;br&gt;I'll just need to create an onsubmit function to determine if checkbox is checked and code to disabe if not checked 
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Read this article:-
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://www.asfusion.com/blog/entry/enabling-and-disabling-validation-in&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.asfusion.com/blog/entry/enabling-and-disabling-validation-in&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Chris
&lt;br&gt;&amp;gt;--
&lt;br&gt;&amp;gt;Chris Velevitch
&lt;br&gt;&amp;gt;Manager - Adobe Platform Users Group, Sydney
&lt;br&gt;&amp;gt;m: 0415 469 095
&lt;br&gt;&amp;gt;www.apugs.org.au
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Adobe Platform Users Group, Sydney
&lt;br&gt;&amp;gt;January '09 meeting: Looking Ahead To The Next Version Of Flex Builder
&lt;br&gt;&amp;gt;Date: Mon 19th January 6pm for 6:30 start
&lt;br&gt;&amp;gt;Details and RSVP &lt;a href=&quot;http://groups.adobe.com/posts/b3ccf0d972&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/posts/b3ccf0d972&lt;/a&gt;&amp;nbsp;
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:283&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:283&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/dynamically-set-required-attribute-in-cfform-flash-tp21507463p21550900.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21534593</id>
	<title>Re: dynamically set required attribute in cfform flash</title>
	<published>2009-01-18T15:19:23Z</published>
	<updated>2009-01-18T15:19:23Z</updated>
	<author>
		<name>Chris Velevitch</name>
	</author>
	<content type="html">Read this article:-
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.asfusion.com/blog/entry/enabling-and-disabling-validation-in&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.asfusion.com/blog/entry/enabling-and-disabling-validation-in&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;--
&lt;br&gt;Chris Velevitch
&lt;br&gt;Manager - Adobe Platform Users Group, Sydney
&lt;br&gt;m: 0415 469 095
&lt;br&gt;www.apugs.org.au
&lt;br&gt;&lt;br&gt;Adobe Platform Users Group, Sydney
&lt;br&gt;January '09 meeting: Looking Ahead To The Next Version Of Flex Builder
&lt;br&gt;Date: Mon 19th January 6pm for 6:30 start
&lt;br&gt;Details and RSVP &lt;a href=&quot;http://groups.adobe.com/posts/b3ccf0d972&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.adobe.com/posts/b3ccf0d972&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:282&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:282&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/dynamically-set-required-attribute-in-cfform-flash-tp21507463p21534593.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21507463</id>
	<title>dynamically set required attribute in cfform flash</title>
	<published>2009-01-16T12:01:29Z</published>
	<updated>2009-01-16T12:01:29Z</updated>
	<author>
		<name>Eileen Collins</name>
	</author>
	<content type="html">I have a cfform flash in an application. I want to be able to set the required=&amp;quot;yes&amp;quot; on a form field after a user checks the checkbox above it. SO for example, if the user checks the &amp;quot;I have my keys&amp;quot; box, then the &amp;quot;keydate&amp;quot; form field becomes required.
&lt;br&gt;&lt;br&gt;I've tried it the same way for the enable attribute, but I get error that required attribute is not boolean like the enable attribute. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;cfform action=&amp;quot;&amp;quot; method=&amp;quot;POST&amp;quot; name=&amp;quot;myform&amp;quot; width=&amp;quot;850&amp;quot; format=&amp;quot;Flash&amp;quot; &amp;gt; 
&lt;br&gt;&lt;br&gt;&amp;lt;cfinput type=&amp;quot;Checkbox&amp;quot; name=&amp;quot;haskeys&amp;quot; &amp;nbsp;label=&amp;quot;I have my keys&amp;quot; visible=&amp;quot;Yes&amp;quot; enabled=&amp;quot;Yes&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfinput type=&amp;quot;DateField&amp;quot; name=&amp;quot;keydate&amp;quot; width=&amp;quot;100&amp;quot; label=&amp;quot;Date My keys were Provided&amp;quot; required=&amp;quot;&amp;quot; size=&amp;quot;20&amp;quot; visible=&amp;quot;Yes&amp;quot; &amp;nbsp;value&amp;quot;&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfinput type=&amp;quot;submit&amp;quot; value=&amp;quot;Submit&amp;quot; name=&amp;quot;submit&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;/cfform&amp;gt; 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:281&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:281&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/dynamically-set-required-attribute-in-cfform-flash-tp21507463p21507463.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19698418</id>
	<title>Re: setting up remoting in Actionscript 3</title>
	<published>2008-09-26T17:33:30Z</published>
	<updated>2008-09-26T17:33:30Z</updated>
	<author>
		<name>John  Barrett</name>
	</author>
	<content type="html">Hi Tyron,
&lt;br&gt;Thanks so much for your reply!
&lt;br&gt;I did not get the mail, as there was an issue with the manage lists, I just updated it so I can get mails from this listing. I did check this page today, and lucky I did, as I see your responds. I was wondering if you could send me the page you attached at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19698418&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;I would love to get remoting set up with actionscript 3, and if your script does that I would be very greatful:)
&lt;br&gt;Yes indeed setting up remoting in AS 3 is for sure 100% different than AS 2.
&lt;br&gt;&lt;br&gt;I guess once I post this, I see if I can indeed can mails from this list, but I was not able to get the older mails.
&lt;br&gt;Thanks again for your responds,and I hope that you would be kind enough to send me the script.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks so much,
&lt;br&gt;John
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:280&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:280&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/setting-up-remoting-in-Actionscript-3-tp19683612p19698418.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19688310</id>
	<title>Re: setting up remoting in Actionscript 3</title>
	<published>2008-09-26T06:16:53Z</published>
	<updated>2008-09-26T06:16:53Z</updated>
	<author>
		<name>Tyron Foston</name>
	</author>
	<content type="html">Remoting in as3 100% different that in as2. I wrote a simple as3 class to remedy help. feel free to use it (attached)
&lt;br&gt;&lt;br&gt;Tyron E. Foston
&lt;br&gt;&lt;br&gt;Comedy Style: Industrial Strength
&lt;br&gt;&lt;br&gt;Http://www.TyronFoston.com
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.myspace.com/tyronfoston&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.myspace.com/tyronfoston&lt;/a&gt;&lt;br&gt;&lt;br&gt;--- On Fri, 9/26/08, John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19688310&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;From: John Barrett &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19688310&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barrjohnm@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: setting up remoting in Actionscript 3
&lt;br&gt;To: &amp;quot;cf-flash&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19688310&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cf-flash@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Date: Friday, September 26, 2008, 3:14 AM
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;I don't know if this is the right place to ask this, and if not I am sorry.
&lt;br&gt;&lt;br&gt;I am trying to get flash remoting with a ColdFusion (cfc) backend working in
&lt;br&gt;Flash CS 3 with Actionscript 3. Actually I am really just trying to upgrade my
&lt;br&gt;actionscript 2 code to use actionscript 3.
&lt;br&gt;&lt;br&gt;There is a detail post about my old set up here:
&lt;br&gt;&lt;a href=&quot;http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&amp;catid=250&amp;threadid=1393924&amp;enterthread=y&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&amp;catid=250&amp;threadid=1393924&amp;enterthread=y&lt;/a&gt;&lt;br&gt;&lt;br&gt;I didn't think that it would be worth while to post it too.
&lt;br&gt;&lt;br&gt;Basically I am try trying to connect to the cfc,and trace the results back.
&lt;br&gt;Once I can do that I want to upgrade old AS 2 to AS 3 using
&lt;br&gt;&lt;br&gt;I would be very grateful for anybody who can help me,
&lt;br&gt;Thanks so much,
&lt;br&gt;John 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:279&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:279&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/setting-up-remoting-in-Actionscript-3-tp19683612p19688310.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19683612</id>
	<title>setting up remoting in Actionscript 3</title>
	<published>2008-09-26T00:14:40Z</published>
	<updated>2008-09-26T00:14:40Z</updated>
	<author>
		<name>John  Barrett</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;I don't know if this is the right place to ask this, and if not I am sorry.
&lt;br&gt;&lt;br&gt;I am trying to get flash remoting with a ColdFusion (cfc) backend working in Flash CS 3 with Actionscript 3. Actually I am really just trying to upgrade my actionscript 2 code to use actionscript 3.
&lt;br&gt;&lt;br&gt;There is a detail post about my old set up here:
&lt;br&gt;&lt;a href=&quot;http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&amp;catid=250&amp;threadid=1393924&amp;enterthread=y&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&amp;catid=250&amp;threadid=1393924&amp;enterthread=y&lt;/a&gt;&lt;br&gt;&lt;br&gt;I didn't think that it would be worth while to post it too.
&lt;br&gt;&lt;br&gt;Basically I am try trying to connect to the cfc,and trace the results back. Once I can do that I want to upgrade old AS 2 to AS 3 using
&lt;br&gt;&lt;br&gt;I would be very grateful for anybody who can help me,
&lt;br&gt;Thanks so much,
&lt;br&gt;John 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;207172674;29440083;f&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;207172674;29440083;f&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:278&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/message.cfm/messageid:278&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/cf-flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/setting-up-remoting-in-Actionscript-3-tp19683612p19683612.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19438725</id>
	<title>Re: OnResult is not being called</title>
	<published>2008-09-11T09:19:36Z</published>
	<updated>2008-09-11T09:19:36Z</updated>
	<author>
		<name>Brian Erickson-3</name>
	</author>
	<content type="html">&amp;quot;SESSION.rsTest&amp;quot; still contains an empty string.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;lt;CFQUERY NAME=&amp;quot;SampleQry&amp;quot; DATASOURCE=&amp;quot;lp_books&amp;quot; result=&amp;quot;SESSION.rsTest&amp;quot;&amp;gt; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;203748912;27390454;j&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;203748912;27390454;j&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:277&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:277&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OnResult-is-not-being-called-tp19397828p19438725.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19426172</id>
	<title>RE: OnResult is not being called</title>
	<published>2008-09-10T18:23:32Z</published>
	<updated>2008-09-10T18:23:32Z</updated>
	<author>
		<name>Michael White-3</name>
	</author>
	<content type="html">&amp;lt;CFQUERY NAME=&amp;quot;SampleQry&amp;quot; DATASOURCE=&amp;quot;lp_books&amp;quot; result=&amp;quot;SESSION.rsTest&amp;quot;&amp;gt; 
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Brian Erickson [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19426172&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ericksbr@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, September 10, 2008 10:19 AM
&lt;br&gt;To: CF-Flash
&lt;br&gt;Subject: Re: OnResult is not being called
&lt;br&gt;&lt;br&gt;Modified:
&lt;br&gt;Sample.cfc to look like:
&lt;br&gt;&amp;lt;cfcomponent&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;cffunction name=&amp;quot;getContactInfo&amp;quot; access=&amp;quot;remote&amp;quot; returntype=&amp;quot;query&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfargument name=&amp;quot;Parameter&amp;quot; required=&amp;quot;yes&amp;quot; type=&amp;quot;String&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;CFQUERY NAME=&amp;quot;SampleQry&amp;quot; DATASOURCE=&amp;quot;lp_books&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Select CURRENT_DATE
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/CFQUERY&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfset SESSION.rsTest = &amp;quot;Testing&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfreturn SampleQry&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/cffunction&amp;gt;
&lt;br&gt;&amp;lt;/cfcomponent&amp;gt;
&lt;br&gt;&lt;br&gt;The SESSION.rsTest is still empty.
&lt;br&gt;Does this mean &amp;quot;getContactInfo&amp;quot; is not being called?
&lt;br&gt;&lt;br&gt;----------------------------Source Code
&lt;br&gt;&amp;lt;cfset SESSION.rsTest = &amp;quot;&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfform name='MailingList' format=&amp;quot;flash&amp;quot; method=&amp;quot;POST&amp;quot; width=&amp;quot;90%&amp;quot;
&lt;br&gt;height=&amp;quot;500&amp;quot; skin=&amp;quot;haloBlue&amp;quot; action=&amp;quot;#URLSessionFormat(&amp;quot;Test.cfm&amp;quot;)#&amp;quot;
&lt;br&gt;onload=&amp;quot;formOnLoad()&amp;quot; &amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfformitem type=&amp;quot;script&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;public function formOnLoad():Void{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- set up remoting service ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setUpRemoting();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- set up styles ---&amp;gt;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;public function setUpRemoting():Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfoutput&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var connection:mx.remoting.Connection =
&lt;br&gt;mx.remoting.NetServices.createGatewayConnection(&amp;quot;&lt;a href=&quot;http://#cgi.HTTP_HOST#/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://#cgi.HTTP_HOST#/&lt;/a&gt;&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var componentPath:String = &amp;quot;&amp;quot;;
&lt;br&gt;&amp;nbsp;		var listingService:mx.remoting.NetServiceProxy;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cfoutput&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var responseHandler:Object &amp;nbsp;= {};
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- put controls in the responseHandler's scope ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var contactList:mx.controls.Tree = contactList;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- handle search by default onResult function ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.onResult = function( results: Object ):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; contactList.dataProvider = results;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- handle create response ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.create_Result = function( results: Object
&lt;br&gt;):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //show a message
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- handle update response ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.update_Result = function( results: Object
&lt;br&gt;):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- show a message ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- handle remove response ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.remove_Result = function( results: Object
&lt;br&gt;):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- show a message ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- default error handler ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.onStatus &amp;nbsp;= function( stat: Object ):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- if there is any error, show an alert ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Error: &amp;quot; + stat.description);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- store service in global variable ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MailingList.listingService =
&lt;br&gt;connection.getService(componentPath, responseHandler );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;lt;!--- function that gets called when grid selection changes, used to bind
&lt;br&gt;other controls to grid values ---&amp;gt; public function listingTreeChanged():Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var sSelected:String;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sSelected = contactList.selectedNode.getProperty('data').value;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MailingList.listingService.getContactInfo(sSelected);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(sSelected);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; contactList.setFocus();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;lt;/cfformitem&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfformgroup type=&amp;quot;hbox&amp;quot; height=&amp;quot;520&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfformgroup type=&amp;quot;panel&amp;quot; width=&amp;quot;350&amp;quot; label=&amp;quot;Contacts&amp;quot;
&lt;br&gt;style=&amp;quot;panelBorderStyle:'roundCorners'; themeColor:##FE7E00;
&lt;br&gt;headerColors:##F2CB2A, ##FFE57A; backgroundColor:##FFE57A;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cftree name=&amp;quot;contactList&amp;quot; lookAndFeel=&amp;quot;motif&amp;quot;
&lt;br&gt;onchange=&amp;quot;listingTreeChanged()&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cftreeitem value=&amp;quot;Contact&amp;quot;
&lt;br&gt;display=&amp;quot;Contact&amp;quot; expand=&amp;quot;no&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cftree&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cfformgroup&amp;gt;
&lt;br&gt;&amp;lt;/cfformgroup&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfinput name=&amp;quot;Submit&amp;quot; type=&amp;quot;submit&amp;quot; value=&amp;quot;Send&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;/cfform&amp;gt;
&lt;br&gt;----------------------------------------------------------
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Try saving your result variable to the session scope
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Design:
&lt;br&gt;&amp;gt;I have &amp;lt;cfform type=&amp;quot;flash&amp;quot;&amp;gt; containing a &amp;lt;cftree&amp;gt;.
&lt;br&gt;&amp;gt;When a item in the &amp;lt;cftree&amp;gt; is selected, I want the various edit 
&lt;br&gt;&amp;gt;controls to populate with data.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I have followed the tutorial &amp;quot;&lt;a href=&quot;http://tutorial469.easycfm.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tutorial469.easycfm.com/&lt;/a&gt;&amp;quot;, but the 
&lt;br&gt;&amp;gt;&amp;quot;onResult&amp;quot; function still isn't getting called.
&lt;br&gt;&amp;gt;I verified that ColdFusion has &amp;quot;Enable Flash Remote Support&amp;quot;.
&lt;br&gt;&amp;gt;Nothing in the logs, suggest there is a problem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Quetions:
&lt;br&gt;&amp;gt;What can I do to isolate the problem?
&lt;br&gt;&amp;gt;Do I need to configure a gateway? 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;203748912;27390454;j&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;203748912;27390454;j&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:276&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:276&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OnResult-is-not-being-called-tp19397828p19426172.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19418813</id>
	<title>Re: OnResult is not being called</title>
	<published>2008-09-10T10:18:45Z</published>
	<updated>2008-09-10T10:18:45Z</updated>
	<author>
		<name>Brian Erickson-3</name>
	</author>
	<content type="html">Modified:
&lt;br&gt;Sample.cfc to look like:
&lt;br&gt;&amp;lt;cfcomponent&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;cffunction name=&amp;quot;getContactInfo&amp;quot; access=&amp;quot;remote&amp;quot; returntype=&amp;quot;query&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfargument name=&amp;quot;Parameter&amp;quot; required=&amp;quot;yes&amp;quot; type=&amp;quot;String&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;CFQUERY NAME=&amp;quot;SampleQry&amp;quot; DATASOURCE=&amp;quot;lp_books&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Select CURRENT_DATE
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/CFQUERY&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfset SESSION.rsTest = &amp;quot;Testing&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfreturn SampleQry&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/cffunction&amp;gt;
&lt;br&gt;&amp;lt;/cfcomponent&amp;gt;
&lt;br&gt;&lt;br&gt;The SESSION.rsTest is still empty.
&lt;br&gt;Does this mean &amp;quot;getContactInfo&amp;quot; is not being called?
&lt;br&gt;&lt;br&gt;----------------------------Source Code
&lt;br&gt;&amp;lt;cfset SESSION.rsTest = &amp;quot;&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfform name='MailingList' format=&amp;quot;flash&amp;quot; method=&amp;quot;POST&amp;quot; width=&amp;quot;90%&amp;quot; height=&amp;quot;500&amp;quot; skin=&amp;quot;haloBlue&amp;quot; action=&amp;quot;#URLSessionFormat(&amp;quot;Test.cfm&amp;quot;)#&amp;quot; onload=&amp;quot;formOnLoad()&amp;quot; &amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfformitem type=&amp;quot;script&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;public function formOnLoad():Void{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- set up remoting service ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setUpRemoting();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- set up styles ---&amp;gt;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;public function setUpRemoting():Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfoutput&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var connection:mx.remoting.Connection = mx.remoting.NetServices.createGatewayConnection(&amp;quot;&lt;a href=&quot;http://#cgi.HTTP_HOST#/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://#cgi.HTTP_HOST#/&lt;/a&gt;&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var componentPath:String = &amp;quot;&amp;quot;;
&lt;br&gt;&amp;nbsp;		var listingService:mx.remoting.NetServiceProxy;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cfoutput&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var responseHandler:Object &amp;nbsp;= {};
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- put controls in the responseHandler's scope ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var contactList:mx.controls.Tree = contactList;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- handle search by default onResult function ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.onResult = function( results: Object ):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; contactList.dataProvider = results;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- handle create response ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.create_Result = function( results: Object ):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //show a message
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- handle update response ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.update_Result = function( results: Object ):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- show a message ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- handle remove response ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.remove_Result = function( results: Object ):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- show a message ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(results.message);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- default error handler ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; responseHandler.onStatus &amp;nbsp;= function( stat: Object ):Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Got Here&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- if there is any error, show an alert ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Error: &amp;quot; + stat.description);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mx.managers.CursorManager.removeBusyCursor();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--- store service in global variable ---&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MailingList.listingService = connection.getService(componentPath, responseHandler );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;lt;!--- function that gets called when grid selection changes, used to bind other controls to grid values ---&amp;gt;
&lt;br&gt;public function listingTreeChanged():Void
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var sSelected:String;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sSelected = contactList.selectedNode.getProperty('data').value;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MailingList.listingService.getContactInfo(sSelected);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(sSelected);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; contactList.setFocus();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;lt;/cfformitem&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;cfformgroup type=&amp;quot;hbox&amp;quot; height=&amp;quot;520&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfformgroup type=&amp;quot;panel&amp;quot; width=&amp;quot;350&amp;quot; label=&amp;quot;Contacts&amp;quot; style=&amp;quot;panelBorderStyle:'roundCorners'; themeColor:##FE7E00; headerColors:##F2CB2A, ##FFE57A; backgroundColor:##FFE57A;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cftree name=&amp;quot;contactList&amp;quot; lookAndFeel=&amp;quot;motif&amp;quot; onchange=&amp;quot;listingTreeChanged()&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cftreeitem value=&amp;quot;Contact&amp;quot; display=&amp;quot;Contact&amp;quot; expand=&amp;quot;no&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cftree&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/cfformgroup&amp;gt;
&lt;br&gt;&amp;lt;/cfformgroup&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cfinput name=&amp;quot;Submit&amp;quot; type=&amp;quot;submit&amp;quot; value=&amp;quot;Send&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;/cfform&amp;gt;
&lt;br&gt;----------------------------------------------------------
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Try saving your result variable to the session scope 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Design:
&lt;br&gt;&amp;gt;I have &amp;lt;cfform type=&amp;quot;flash&amp;quot;&amp;gt; containing a &amp;lt;cftree&amp;gt;.
&lt;br&gt;&amp;gt;When a item in the &amp;lt;cftree&amp;gt; is selected, I want the various edit controls to
&lt;br&gt;&amp;gt;populate with data.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I have followed the tutorial &amp;quot;&lt;a href=&quot;http://tutorial469.easycfm.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tutorial469.easycfm.com/&lt;/a&gt;&amp;quot;, but the
&lt;br&gt;&amp;gt;&amp;quot;onResult&amp;quot; function still isn't getting called.
&lt;br&gt;&amp;gt;I verified that ColdFusion has &amp;quot;Enable Flash Remote Support&amp;quot;.
&lt;br&gt;&amp;gt;Nothing in the logs, suggest there is a problem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Quetions:
&lt;br&gt;&amp;gt;What can I do to isolate the problem?
&lt;br&gt;&amp;gt;Do I need to configure a gateway? 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;203748912;27390454;j&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;203748912;27390454;j&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:275&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:275&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OnResult-is-not-being-called-tp19397828p19418813.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19399186</id>
	<title>RE: OnResult is not being called</title>
	<published>2008-09-09T12:08:11Z</published>
	<updated>2008-09-09T12:08:11Z</updated>
	<author>
		<name>Michael White-3</name>
	</author>
	<content type="html">Try saving your result variable to the session scope 
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Brian Erickson [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19399186&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ericksbr@...&lt;/a&gt;] 
&lt;br&gt;Sent: Tuesday, September 09, 2008 10:58 AM
&lt;br&gt;To: CF-Flash
&lt;br&gt;Subject: OnResult is not being called
&lt;br&gt;&lt;br&gt;Design:
&lt;br&gt;I have &amp;lt;cfform type=&amp;quot;flash&amp;quot;&amp;gt; containing a &amp;lt;cftree&amp;gt;.
&lt;br&gt;When a item in the &amp;lt;cftree&amp;gt; is selected, I want the various edit controls to
&lt;br&gt;populate with data.
&lt;br&gt;&lt;br&gt;I have followed the tutorial &amp;quot;&lt;a href=&quot;http://tutorial469.easycfm.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tutorial469.easycfm.com/&lt;/a&gt;&amp;quot;, but the
&lt;br&gt;&amp;quot;onResult&amp;quot; function still isn't getting called.
&lt;br&gt;I verified that ColdFusion has &amp;quot;Enable Flash Remote Support&amp;quot;.
&lt;br&gt;Nothing in the logs, suggest there is a problem.
&lt;br&gt;&lt;br&gt;Quetions:
&lt;br&gt;What can I do to isolate the problem?
&lt;br&gt;Do I need to configure a gateway?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;203748912;27390454;j&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;203748912;27390454;j&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:274&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:274&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OnResult-is-not-being-called-tp19397828p19399186.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19397828</id>
	<title>OnResult is not being called</title>
	<published>2008-09-09T10:57:59Z</published>
	<updated>2008-09-09T10:57:59Z</updated>
	<author>
		<name>Brian Erickson-3</name>
	</author>
	<content type="html">Design:
&lt;br&gt;I have &amp;lt;cfform type=&amp;quot;flash&amp;quot;&amp;gt; containing a &amp;lt;cftree&amp;gt;.
&lt;br&gt;When a item in the &amp;lt;cftree&amp;gt; is selected,
&lt;br&gt;I want the various edit controls to populate with data.
&lt;br&gt;&lt;br&gt;I have followed the tutorial &amp;quot;&lt;a href=&quot;http://tutorial469.easycfm.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tutorial469.easycfm.com/&lt;/a&gt;&amp;quot;, but the &amp;quot;onResult&amp;quot; function still isn't getting called.
&lt;br&gt;I verified that ColdFusion has &amp;quot;Enable Flash Remote Support&amp;quot;.
&lt;br&gt;Nothing in the logs, suggest there is a problem.
&lt;br&gt;&lt;br&gt;Quetions:
&lt;br&gt;What can I do to isolate the problem?
&lt;br&gt;Do I need to configure a gateway?
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;203748912;27390454;j&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;203748912;27390454;j&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:273&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:273&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/OnResult-is-not-being-called-tp19397828p19397828.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18265356</id>
	<title>FLASH POSITION IN TX</title>
	<published>2008-07-03T11:12:16Z</published>
	<updated>2008-07-03T11:12:16Z</updated>
	<author>
		<name>Andrea Skinner</name>
	</author>
	<content type="html">Flash Architect
&lt;br&gt;Salary: &amp;nbsp;Commensurate w/experience
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;Does writing Action Script code get you excited, and tweening get you down? Are you passionate about creating moving experiences in the interactive space? Do you want to craft work that will end up in places like this
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Then you could be the Flash Architect we're looking for. If things work out and we like what we see, the opportunity exists for you to join an up and coming yet seasoned group of interactive ad professionals in all disciplines, and have a seat at the strategy, creative and execution table. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;You'll work with our Lead Flash Architect to conceive, create and execute bleeding edge multimedia executions for Fortune 500 brands. You will design, and execute the animations, components, frameworks, and scripts that comprise our Flash and blended multimedia projects. You will work closely with project teams to balance technical requirements with creative needs, and ensure the project achieves a successful launch.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Responsibilities:
&lt;br&gt;Collaborating with creative and technical team members to determine the best Flash solutions 
&lt;br&gt;Developing applications using your extensive knowledge of Action Script and Flash Object-Oriented concepts 
&lt;br&gt;Develop programs utilizing &amp;quot;best practices&amp;quot; for multimedia content creation 
&lt;br&gt;Refining video and multimedia components to be deployed via FLV and CDN (Content Delivery Networks) 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;3+ years experience delivering Flash-based solutions 
&lt;br&gt;Agency or Web shop experience, (though work portfolio can make up for a lack of agency time) 
&lt;br&gt;Better than working knowledge of Flash and AS2 (If you have AS3 we'll love you even more) 
&lt;br&gt;Any other motion-graphic experience (e.g. After Effects) would be awesome! 
&lt;br&gt;CS3, CSS/HTML, and server-side application experience for integration purposes. 
&lt;br&gt;Be able to contribute to the burgeoning office collection of awesome YouTube videos. 
&lt;br&gt;Other experience (Great but not necessary):
&lt;br&gt;Flash online ad banner production 
&lt;br&gt;Rich Media portal/platform development 
&lt;br&gt;Fireworks and pre-production 
&lt;br&gt;Please let us know your salary requirements. Typically commensurate with experience.
&lt;br&gt;&lt;br&gt;Andrea Skinner
&lt;br&gt;Aptude, Inc.
&lt;br&gt;630-692-6700 X18
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18265356&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;askinner@...&lt;/a&gt; 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;203748912;27390454;j&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;203748912;27390454;j&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:272&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:272&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FLASH-POSITION-IN-TX-tp18265356p18265356.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17372764</id>
	<title>&lt;CFTREE&gt;</title>
	<published>2008-05-21T09:25:27Z</published>
	<updated>2008-05-21T09:25:27Z</updated>
	<author>
		<name>Jimmy Kurd</name>
	</author>
	<content type="html">I am having alot of problems including the cftree tag inside a cffrom using FLASH as my method of display.
&lt;br&gt;I am using CFWEBSTORE with CF MX7, fusebox 3.5
&lt;br&gt;The tree does not show up AT ALL.
&lt;br&gt;I used dynamic data, i used static data, i pretty much consumed all my option with no luck.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Can someone help please
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;192386516;25150098;k&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;192386516;25150098;k&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:271&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:271&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%3CCFTREE%3E-tp17372764p17372764.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-17142725</id>
	<title>Flash menu creator</title>
	<published>2008-05-09T00:27:17Z</published>
	<updated>2008-05-09T00:27:17Z</updated>
	<author>
		<name>nsh</name>
	</author>
	<content type="html">I've find &lt;a href=&quot;http://flash-menu.net&quot; title&quot;&quot;flash menu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;flash menu&lt;/a&gt;&amp;nbsp;creator.
&lt;br&gt;Any body know something like that flash menu builder?
&lt;br&gt;It must be free and online.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flash-menu-creator-tp17142725p17142725.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16583449</id>
	<title>Flash Grid / Check Box Data Manipulation</title>
	<published>2008-04-08T18:41:40Z</published>
	<updated>2008-04-08T18:41:40Z</updated>
	<author>
		<name>LSD 4Me</name>
	</author>
	<content type="html">To give a breif background, I have a flash form that serves as a search form 
&lt;br&gt;against a MySQL DB and grid below that for displaying results. I have enabled the 
&lt;br&gt;&amp;quot;selectmode=&amp;quot;edit&amp;quot;&amp;quot; on the cffgrid and have set select=&amp;quot;no&amp;quot; to all cfgridcolumns 
&lt;br&gt;except for one column:
&lt;br&gt;&lt;br&gt;&amp;lt;cfgridcolumn name=&amp;quot;checked&amp;quot; header=&amp;quot;Checked&amp;quot; type=&amp;quot;boolean&amp;quot; width=&amp;quot;50&amp;quot; 
&lt;br&gt;select=&amp;quot;yes&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;ALl of this results in a grid that displays data and on the very left is a column 
&lt;br&gt;of checkable checkboxes...(which took some time to tweak as well..;)...What I 
&lt;br&gt;want is for any row that contain a checkbox, that when it is checked, all of the 
&lt;br&gt;row data is available to POST to the DB or to an action page. If i do a &amp;quot;cfif 
&lt;br&gt;IsDefined(&amp;quot;FORM.checked&amp;quot;)&amp;quot; i should be able to work with these selections??? How 
&lt;br&gt;would i go about capturing the checked rows and making that data available 
&lt;br&gt;elsewhere? THanks! 
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;192386516;25150098;k&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;192386516;25150098;k&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:270&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:270&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flash-Grid---Check-Box-Data-Manipulation-tp16583449p16583449.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16289550</id>
	<title>Re: Queue flash videos</title>
	<published>2008-03-25T14:53:16Z</published>
	<updated>2008-03-25T14:53:16Z</updated>
	<author>
		<name>nsh</name>
	</author>
	<content type="html">My IMHO - u can use Flex it is more simple to use.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Ben D. Higgins wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I'm looking for a way to create a list of flv files stored on a flash
&lt;br&gt;media server and play them back to back without having to select the
&lt;br&gt;next video. The list has to be dynamic so I can't just create a list in
&lt;br&gt;a swf file and play it back. I've found an example for doing this on the
&lt;br&gt;client's browser side by downloading the files and playing them in the
&lt;br&gt;flash player by using the flash / javascript gateway that macromedia
&lt;br&gt;created. Does anyone know if there is a function in the gateway that
&lt;br&gt;does streaming files or another way to do this using coldfusion and
&lt;br&gt;javascript?
&lt;br&gt;Ben Higgins
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:168&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:168&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Queue-flash-videos-tp6723267p16289550.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16110522</id>
	<title>Re: Flash map of the US</title>
	<published>2008-03-17T16:03:41Z</published>
	<updated>2008-03-17T16:03:41Z</updated>
	<author>
		<name>Mike Chabot</name>
	</author>
	<content type="html">I went with this one a couple years ago:
&lt;br&gt;&lt;a href=&quot;http://www.fla-shop.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fla-shop.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;It wasn't the best one, but it was decent and was at a reasonable
&lt;br&gt;price. It also came with the FLA source code, which was a big plus.
&lt;br&gt;The source code turned out to be sloppy uncommented code, but it was
&lt;br&gt;enough of a head start that I was able to program exactly what I
&lt;br&gt;needed without having to start with a blank canvas.
&lt;br&gt;&lt;br&gt;-MIke Chabot
&lt;br&gt;&lt;br&gt;On Mon, Mar 17, 2008 at 5:33 PM, Michael Dinowitz
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16110522&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdinowit@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Does anyone know of a clickable flash map of the US that will return a state id or something of the sort?
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;160198600;22374440;w&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;160198600;22374440;w&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:269&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:269&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flash-map-of-the-US-tp16107691p16110522.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16109560</id>
	<title>RE: Flash map of the US</title>
	<published>2008-03-17T15:05:58Z</published>
	<updated>2008-03-17T15:05:58Z</updated>
	<author>
		<name>Bobby Hartsfield-2</name>
	</author>
	<content type="html">I've got one that I've been working on but it's only about as you asked for
&lt;br&gt;at this point. You can click the state and it zooms in, click again to zoom
&lt;br&gt;back out. When you click it, there is a state variable that tells the map
&lt;br&gt;which state clip to zoom that you could easily do whatever you wanted with.
&lt;br&gt;ALL code is in an external as file so no hunting through clips and frames to
&lt;br&gt;find anything It should be easy to change to just getURL('myurl.cfm?state='
&lt;br&gt;+ _root.currentState) instead of calling the zoom function. You are welcome
&lt;br&gt;to the dev files if you'd like to take a look.
&lt;br&gt;&lt;br&gt;..:.:.:.:.:.:.:.:.:.:.:.
&lt;br&gt;Bobby Hartsfield
&lt;br&gt;&lt;a href=&quot;http://acoderslife.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://acoderslife.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Michael Dinowitz [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16109560&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdinowit@...&lt;/a&gt;] 
&lt;br&gt;Sent: Monday, March 17, 2008 5:34 PM
&lt;br&gt;To: CF-Flash
&lt;br&gt;Subject: Flash map of the US
&lt;br&gt;&lt;br&gt;Does anyone know of a clickable flash map of the US that will return a state
&lt;br&gt;id or something of the sort?
&lt;br&gt;Thanks 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date
&lt;br&gt;Get the Free Trial
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;160198600;22374440;w&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;160198600;22374440;w&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:268&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/message.cfm/messageid:268&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CF-Flash/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Flash-map-of-the-US-tp16107691p16109560.html" />
</entry>

</feed>
