I have created an interface to pass variables from Coldfusion to Flash. When I
run the .cfm code below in a browser, then check the "Page Source" I end up
with 5 extra spaces above the variable output. I thought utilizing
"suppresswhitespace" would do the trick, but no deal. When I run the same code
in PHP it end up at the top and works ok. Any Ideas?
<cfsetting enablecfoutputonly="YES">
<cfset myVariable = "&answer=42&">
<cfprocessingdirective suppresswhitespace="Yes">
<cfoutput>#myVariable#</cfoutput>
</cfprocessingdirective>
Thanks
Allen