coldfusion flash integration:
Having problems viewing my flash form using a cftree. when it is on the dev
box, it shows with no problem. After moving it via ftp to the production
server, i see the normal cfinput controls, but no cftree. Has anyone seen this
issue? The following is a sample of the code,and any help would really be great!
<cfform action="menu.cfm" name="form1" preloader="true" format="flash"
width="280" height="350" style="background-color:##CCCCCC; color:##000000;
font-weight:bold" accessible="yes">
<cfformgroup type="HBox">
<cfformgroup type="VBox">
<cfformitem type="html" style="font-weight:800;"><h3>IMAGE
INDEX</h3></cfformitem>
<cftree
format="flash"
Name="tree1"
Height="300"
HScroll="no"
VScroll="no"
Border="no"
AppendKey="yes" style="background-color:##CCCCCC;">
<!--- Begin AQUACULTURE menu--->
<cftreeitem value="aquaculture"
display="AQUACULTURE"
expand="Yes,no,no">
<cftreeitem value="hatcheries"
display="Hatcheries" parent="aquaculture"
expand="no,no,no">
<cftreeitem value="montlake_sockeye"
display="Montlake sockeye" parent="hatcheries"
expand="no,no,no">
<cftreeitem value="snake_river_sockeye"
display="Snake River sockeye (IDFG)" parent="hatcheries"
expand="no,no,no">
</cftree>
</cfformgroup>
</cfformgroup>
</cfform>