Hey all,
I’m trying to make a small email capture form, but I’m having trouble getting Flash to pass the email address to the server. I’ve since given up trying to use getURL and I’m simply trying to trace the variable instead.
The form consists of a text box w/ instance name “email_txt” and a button w/ instance name “btnSignUp.” the actionscript is placed on the button.
Here’s my code:
on(release) {
trace("email_txt says: " + email_txt);
// getURL stuff here
}
My trace statement reads:
email_txt says: undefined
This is a really simple question and maybe I’m just thinking too hard, but I can’t figure out what’s wrong. I’d appreciate any help the community can give me.
Thanks a lot!