Welcome, Guest. Please login or register.
Did you miss your activation email?
05/23/12, 02:12
Home Help Search Login Register
News: Parsley Flex framework review featuring quiz application, in our Flex frameworks series
Flex SDK 4.5 mobile roadmap: begin with your mobile development
Swiz Flex framework review featuring quiz application
New homepage we release our new Homepage, take a look ...

+  Flash-db
|-+  General
| |-+  Flash MX 2004 (Moderators: Flash-db, Musicman, vesa kortelainen, Ronald Wernecke, Andresss, papachan)
| | |-+  @ as must by contactmail
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] Print
Author Topic: @ as must by contactmail  (Read 1733 times)
depp
Jr. Programmer
**
Posts: 68



View Profile Email
« on: 04/13/04, 06:36 »

hi,

i´ve a contactmail, but i want that everybody had to write a "@" in the email filed!
Without "@" nowbody should send the contactformular, but i dont know how to write this!

Can you help me?
Logged
Jorge Solis
Administrator
Systems Administrator
*****
Posts: 14600


View Profile
« Reply #1 on: 04/13/04, 06:48 »

Try

if(email.indexOf("@")==-1) trace("Invalid email")

When the indexOf method doesn't find some character, it return -1

Jorge
Logged

depp
Jr. Programmer
**
Posts: 68



View Profile Email
« Reply #2 on: 04/13/04, 07:48 »

ohh, thanks!
But i´ve a problem to set it in my script!

In the script it only check if there is anything in the filed!
Can you help me?




on (release) {
                  if (Email eq "") {
      _root.Status = "Pleas enter Adress!";
   }
« Last Edit: 04/13/04, 08:04 by depp » Logged
prasad gvss
Seasoned Programmer
***
Posts: 124

India


View Profile WWW Email
« Reply #3 on: 04/13/04, 08:38 »

hi

Give the email box an instance name email and a variable name Email (or whatever you want!)

for the submitt button.

on (release) {
                 if ((Email.length<6)||(Email.indexOf("@")==-1)) {
     _root.Status = "Please enter correct Adress!";
  }
}

hope that helps.

Cheers,
pessi..
Logged

Prasad Gurla,
Ph.D student in Materials Science,
Aachen,
Germany.
depp
Jr. Programmer
**
Posts: 68



View Profile Email
« Reply #4 on: 04/13/04, 13:00 »

ohhh, thats nice, thanks!!!!!!!!1
Logged
Pages: [1] Print 
« previous next »
Jump to:  


Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!