Happy New Year!
I would ask this elsewhere, but it seems most coldfusion users are not wise enough to use PLUM, and I'm 90% sure this is a plum question. I am generating xml with info from a database with coldfusion and feeding that to a swf. After several days of farting around, I go the xml generation working pretty well. However, it seems to be choking on the first line. It doesn't like the fact that the <meta tag is not closed, though I am guessing it would cause other problems if it were and that first line was parsed. If I cut and paste the xml into a page with an xml extension, it works fine. It will work if I cut and paste into an htm file too. Is there a way to prevent the <noscript>. .</noscript> first line? Below is a snippet of the source code generated (if I browse to the page, it is blank, this is the "view source" code): <noscript><meta http-equiv="Refresh" content="0; url=http://127.0.0.1:8500/PyramidHomeWorks/plain/index.cfm"></noscript> <?xml version="1.0" encoding="iso-8859-1"?> <root> <configuration> <chart items_area_style="chart_items_area"/> <styles> <style id="chart_items_area"> <border enabled="yes" size="1" color="Black"/> </style> <style id="categories_column"> <size width="110"/> <background enabled="yes" color="White"/> </style>. <style id="categories_column_line_1"> <background enabled="yes" color="White"/> <font bold="yes" size="10"/> <size height="20"/> </style> <style id="categories_column_line"> <background enabled="yes" color="White"/> <font size="10"/> <size height="20"/> </style> <style id="categories_column_line_2"> <background enabled="yes" color="White"/> <font size="10" color="Red"/> <size height="20"/> </style> <style id="timeline_1"> <font bold="yes"/>.....
