Hi everyone,

Might be an easy problem for everyone else but having some problems due to 
not knowing Flash well.

I'm sending a variable into a Flash movie.  The variable is a ordered 
record set.  Problem is after each field I need to put in a line break.

<cfsetting ENABLECFOUTPUTONLY="yes">
<cfset variables.escape = "\r">
<cfquery name="listNotes" datasource="#request.dsn#">
SELECT *
FROM messages
ORDER BY dateTimeStamp DESC
</cfquery>
<cfset variables.formatedMessage = "">
<cfcontent type="application/x-www-urlformencoded" />
<cfloop query="listNotes">
<cfset variables.formatedMessage = variables.formatedmessage & 
dateformat(listNotes.dateTimeStamp, "MM.DD.YY") & variables.escape & 
listNotes.message & variables.escape>
</cfloop>
<cfoutput>
&cfMessage=#URLEncodedFormat(variables.formatedMessage)#&
</cfoutput>


The following code won't resolve the /r for a line break.
I used \r with no sucess either.
Any idea how to handle this?

______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to