WDDX to Flash
WDDX is an XML-based technology that enables the exchange of complex data between Web programming languages.
<cfsilent>
<cfparam name="Url.Path" default="http://efeed.echofactor.com/getwddx.php?ent=14681&cc=15&ct=5">
<cfhttp url="#Url.Path#" method="Get" >
<cfwddx input="#Trim(cfhttp.FileContent)#" output="Test" action="WDDX2CFML" >
<cfset MyArray = ArrayNew(1)>
	<cfloop query="Test">
		<cfset MyStruct = StructNew()>
		<cfscript>
		MyStruct.Url = #url#;
		MyStruct.title = #title#;
		MyStruct.source = #source#;
		MyStruct.source_url =#source_url#;
		MyStruct.timestamp = #timestamp#;
		</cfscript>
	<cfset temp = #ArrayAppend(MyArray,MyStruct)#>
	</cfloop>
</cfsilent>

<cfif is defined("Url.Flash") is "Yes">	
<cfsilent>
	<cfwddx input="#MyArray#" output="MyWddx" action="CFML2WDDX">
</cfsilent>
<cfoutput>#MyWddx#</cfoutput>
<cfelse>
	<cfloop from="1" to="#ArrayLen(MyArray)#" index="Index">
		<cfoutput>
			<a href="#MyArray[index].url#">#MyArray[index].title#</A>
			<a href="#MyArray[index].source_url#">#MyArray[index].source#</A>
			#MyArray[index].timestamp#
</cfoutput> </cfloop> </cfif>
Sample Data
 
Flash Action Script