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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Making Flash Form From CFM 1

Status
Not open for further replies.

thirtyottsixx

Technical User
Aug 7, 2002
27
0
0
US
Hello all, I'm trying to convert this form into flash. I can't seem to get it to work, I keep getting a client not identified error.

This is the CFM Form code:

<FORM ACTION=" METHOD="POST"
name="Interface4"
target="EISearch"
onSubmit="RouteStatus(this)">
<INPUT TYPE="hidden" NAME="client" VALUE="3018">
<INPUT TYPE="hidden" NAME="restart" VALUE="Interface4">
<INPUT TYPE="hidden" NAME="next" VALUE="byevent.cfm">
<INPUT TYPE="hidden" NAME="id" VALUE="-1">
<INPUT TYPE="hidden" NAME="ref" VALUE="">
<TR><TD COLSPAN=2 class="interfacetitle">
Ticket Search
</TD></TR><TR VALIGN="CENTER">
<TD class="interfacetext">
<SPAN class="fields">
<INPUT TYPE="Text" NAME="k" SIZE=24 MAXLENGTH=40 VALUE=""></SPAN>
<INPUT type="Image"
src=" ALT="Search" ALIGN="ABSMIDDLE" WIDTH=24 HEIGHT=18 HSPACE=4 VSPACE=0 BORDER=0><
BR> Enter the name of an event </TD> </TR></FORM></TABLE>');

Here's what I have for actions:

on (release, keyPress "<Enter>") {
address = "client = "3018";
restart = "Interface4";
next = "byevent.cfm";
id = "-1";
ref = "";
getURL(address);
}

Like I said, I keep getting a client not identified error... any help is appreciated.
 
Code:
on(release, keyPress"<Enter>"){
   client = "3018";
   restart = "Interface4";
   next = "byevent.cfm";
   id = "-1";
   ref = "";
   getURL( "[URL unfurl="true"]http://www.eventinventory.com/search/byevent.cfm","_blank","POST");[/URL]

Your problem is that you aren't actually sending any variables out of the Flash movie ("POST").

Hope it helps.

Wow JT that almost looked like you knew what you were doing!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top