This content has been marked as final.
Show 5 replies
-
1. Re: email form shows code
aniebel Apr 29, 2008 3:18 AM (in response to d213studio)David, it looks like it might be how your variables in your AS are set up. Can you post the email portion of your AS for review? -
2. Re: email form shows code
kglad Apr 29, 2008 6:48 AM (in response to d213studio)you're using textfield variable names that are the same as your textfields' instance names. to remedy, remove the associated variables and use textfield instance names only. -
3. Re: email form shows code
d213studio May 1, 2008 2:39 PM (in response to aniebel)Thanks Guys,
Ill check it out tonight. I will post what the AC says in the window.
David -
4. Re: email form shows code
d213studio May 2, 2008 9:24 AM (in response to d213studio)Hello Aniebel,
Here is what I have in the AS window.
onClipEvent(data){
// show welcome screen
_root.nextFrame();
}
The send button has this
on (release) {
form.loadVariables("email.php", "POST");
}
So what do you think?
-