Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What is Flash doing to my ColdFusion page?

Status
Not open for further replies.

cruise95

Programmer
Oct 7, 2003
56
US
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:D27CDB6E-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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top