Contact Form

How do I go about putting a contact form up in Flash? I’m looking for a tutorial that could explain this, :D.

Name:
Emai:
Comments:

And have it send a subject that I designate?

actionscript.org is good… i’m pretty sure kirupa has a good one too but i can’t seem to find it right now…

http://www.kirupa.com/developer/actionscript/flash_php_email.htm

thats the tutorial i used. its works fine for me except after clicking the send button the form doesn’t go to the next frame showing “your email has been sent”. thats the only problem i get. still dont know how to fix it.

you need php for this.

ando, do you have your form inside of a movie clip with this AS on it?
onClipEvent(data){
***_root.nextFrame();
}

when I first started working with forms in flash I didn’t realize that variables are specific to the movie clips (timelines) you create them in.

hope that helps…

sorry, no asteriks… typo

yeah natronp my form is inside a movie clip and i have that code on the form.
so the code should be on the movie clip instead?

THanks for the link!