Skip to main content
June 29, 2009
Question

cfsavecontent

  • June 29, 2009
  • 1 reply
  • 2029 views

I am using a Flash file that calls gallery.xml
its hardcoded into the flash and i cant edit the flash file.

the code in my page looks like

[PHP]

<cfsavecontent variable="gallery">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <gallery frameColor="0xFFFFFF" frameWidth="15" imagePadding="20" displayTime="6" enableRightClickOpen="true">
        <image>
           <url>http://www.modelproductions.com/proimages/avatar9.jpg</url>
           <caption><![CDATA[<font size="50">Example Gallery</font><br>An example large format <u><a href="http://www.airtightinteractive.com/projects/autoviewer">AutoViewer</a></u> gallery.]]></caption>
           <width>269</width>
           <height>317</height>
        </image>
        <image>
           <url>http://www.modelproductions.com/proimages/avatar9.jpg</url>
           <caption>Pellentesque turpis leo, dignissim ac, vestibulum quis, hendrerit quis, enim.</caption>
           <width>465</width>
           <height>700</height>
        </image>
        <image>
           <url>http://www.modelproductions.com/proimages/avatar9.jpg</url>
           <caption><![CDATA[Captions can be HTML formatted. Supported tags are <b>bold</b>, <u>underline</u>, <i>italics</i>, <u><a href="http://www.google.com" target="_blank">hyperlinks</a></u>, linebreaks<br> and <font color="#ffff00" size="60">font tags</font>.]]></caption>
           <width>700</width>
           <height>465</height>
        </image>
    </gallery>
</cfsavecontent>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>

<body>
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','800','height','400','src','autoviewer','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','autoviewer' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="800" height="400">
  <param name="movie" value="autoviewer.swf" />
  <param name="quality" value="high" />
  <embed src="autoviewer.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="800" height="400"></embed>
</object></noscript>
</body>
</html>


[/PHP]

but its not working
what am i doing wrong

This topic has been closed for replies.

1 reply

BKBK
Community Expert
Community Expert
August 11, 2009
I am using a Flash file that calls gallery.xml

You have set the Coldfusion variable, variables.gallery, but I don't see it used anywhere. As far as Coldfusion is concerned, variables.gallery is just text.

So, Coldfusion  knows nothing about gallery.xml. If you want Coldfusion to convert the text into XML, then use <cfxml> in place of <cfsavecontent>