SidFishes thanks for your post.
Unfortunately it never worked.
I may need to state that it is for CFMX7 Flash Forms.
I have up'd the points up for grab from 250 to 300.
Main Topics
Browse All TopicsHow can i make a flash form submit upon the user hitting the ENTER key?
Like in a standard HTML form.
Thanks in advance for any answers..
Am giving 250 points.
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.
do you mean your using cfform?
that's different ..they're not really Flash Forms (even tho they are forms that use flash ;)
found this in livedocs
<script language="javascript">
<!--
function form_onvalidate(form, input, value) {
var bValid = true;
if(! bValid) _CF_error_fields[input.nam
return bValid;
}
-->
</script>
<cfform name="cfformexample">
<cfinput type = "Text" name = "TextSample">
<cfinput type = "submit" name = "submit" value = "submit">
<cfinput type="hidden" name="form_validation_hook
</cfform>
on (keyPress "<Enter>"){
var Terms = _root.Termstext.text;
getURL("http://www.mysite/
}
SCRIPT FOR:
Submit button and a when pressing enter from the keyboard.
From my script above you would create a dynamic text input and give it the instant name as Termstext
now leave that and create symbol button for the enter key. This button can be transparent background or it can color the back ground of the text typed from the dynamic input.
After creating the text background field from above and making it a button symbol go to your action script 2.0 and paste:
on (keyPress "<Enter>"){
var Terms = _root.Termstext.text;
getURL("http://www.mysite.
}
Now create a submit button make it a button symbol and paste the following:
on (press) {
var Terms = _root.Termstext.text;
getURL("http://www.mysite.
}
Again this is for AS 2.0 and will not work without modification in AS3.0
*This was created for a Intranet with document search capabilities.
Only for reference: http:Q_23265989.html
Now I see that upper comment slightly changed will work also:
==========================
Try this on in you submit button tag
onKeyDown="if(Key.isDown(K
==========================
Should read:
Try this on in you INPUT FIELD tag:
I will change my recommendation.
Business Accounts
Answer for Membership
by: SidFishesPosted on 2007-02-05 at 20:22:12ID: 18473526
can't be done natively
pub/a/java script/200 3/05/20/ co linmoock.h tml
check this out
http://www.oreillynet.com/