Hi all,
Basicaly, I am just using the Flash file as a form/interface. A coldFusion file (getKeywords1.cfm) is called wich calls getKeywords.swf. This file spits out the form variables and the database is updated corectly (thus I know that the <cfif> is working corectly). However, the "here I am" is not getting written to the screen. I don't understand why it is not written.
here is the body of getKeywords1.cfm...it is short!:
<body>
<!---------- Flash filter ------------------------->
<OBJECT classid="clsid
27CDB6E-AE6D-11cf-96B8-444553540000"
codebase=" WIDTH="500" HEIGHT="80" id="getKeywords">
<PARAM NAME=movie VALUE="getKeywords.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="getKeywords.swf" quality=high bgcolor=#FFFFFF WIDTH="500" HEIGHT="80"
NAME="getKeywords" TYPE="application/x-shockwave-flash"
PLUGINSPAGE=" </EMBED>
</OBJECT>
<!------ returned value is inserted into DB ----------->
<cfif isDefined("form.keywords")>
here I am
<cfquery name="updateData" datasource="#session.PrimaryDS#">
INSERT INTO QBOS_HelpFile (keywords)
VALUES ('#form.keywords#')
</cfquery>
</cfif>
</body>
Any help would be greatly appreciated...Thank you -
Frank
Basicaly, I am just using the Flash file as a form/interface. A coldFusion file (getKeywords1.cfm) is called wich calls getKeywords.swf. This file spits out the form variables and the database is updated corectly (thus I know that the <cfif> is working corectly). However, the "here I am" is not getting written to the screen. I don't understand why it is not written.
here is the body of getKeywords1.cfm...it is short!:
<body>
<!---------- Flash filter ------------------------->
<OBJECT classid="clsid
codebase=" WIDTH="500" HEIGHT="80" id="getKeywords">
<PARAM NAME=movie VALUE="getKeywords.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="getKeywords.swf" quality=high bgcolor=#FFFFFF WIDTH="500" HEIGHT="80"
NAME="getKeywords" TYPE="application/x-shockwave-flash"
PLUGINSPAGE=" </EMBED>
</OBJECT>
<!------ returned value is inserted into DB ----------->
<cfif isDefined("form.keywords")>
here I am
<cfquery name="updateData" datasource="#session.PrimaryDS#">
INSERT INTO QBOS_HelpFile (keywords)
VALUES ('#form.keywords#')
</cfquery>
</cfif>
</body>
Any help would be greatly appreciated...Thank you -
Frank