email check
email check
- Started
- Last post
- 2 Responses
- method_c
Is it possible to check in flash if an e-mail adress is valid. How 2 do it?
- jevad0
same way you do email validation in html - use javascript validation and call it from flash...
- goygoygoy0
that cheks if you have not any @ or . , it's not a valid adress:
if ((mail.indexOf("@") == -1) || (mail.indexOf(".") == -1)){
trace('novalid')
}
hope it helps