On the flash form, the button "submit" getURL already refers to a URL (http://www.whatever.com/c
and you are saying all I have to do is include the hidden inputs in the object tag?
Main Topics
Browse All TopicsFirst attempt at a flash form.
HERE IS THE HTML
<INPUT TYPE="HIDDEN" NAME="boolean" VALUE="AND"><INPUT TYPE="HIDDEN" NAME="case" VALUE="Insensitive">
Not sure how to integrate this into my flash form. The submit works, but it needs these terms added to it.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
On the flash form, the button "submit" getURL already refers to a URL (http://www.whatever.com/c
and you are saying all I have to do is include the hidden inputs in the object tag?
Nope - didn't work. I must be missing something, here. Could you show me what is wrong with this..
<OBJECT classid="clsid:D27CDB6E-AE
codebase="http://download.
WIDTH=98 HEIGHT=61> <PARAM NAME=movie VALUE="getform.swf?boolean
</OBJECT>
sorry I don't do perl but I can explain it in PHP:
<OBJECT classid="clsid:D27CDB6E-AE
codebase="http://download.
WIDTH=98 HEIGHT=61> <PARAM NAME=movie VALUE="getform.swf?boolean
VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="getform.swf?boolean=<
WIDTH=98 HEIGHT=61 TYPE="application/x-shockw
PLUGINSPAGE="http://www.ma
</OBJECT>
That should work. Please use the perl syntax instead if you send it to a perl script.
Marian
trudymaresch, Here's the actionscript I think you want...
--------------------------
//these are the 'hidden variables'
boolean="AND";
case="Insensitive";
getURL("whatever.pl", "_blank", "POST");
--------------------------
the 2 vars will be posted along with any other variable you may have defined elsewhere (eg input text boxes)...
Business Accounts
Answer for Membership
by: heddesheimerPosted on 2002-02-19 at 06:52:51ID: 6810728
you can pass it in the <object> tag along with the filename. So if you use:
se=Insensi tive
mymovie.swf
in the tag you can use
mymovie.swf?boolean=AND&ca
to pass these variables to the flash movie. So you have to send your <form> to a script (PHP, AsP or perl) and then you have to compose your object-tag accordingly.
Marian