home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1998 #11 / PCDIREKT_1198.bin / SHOWDATA / ECKESHOP.DXR / 00014.ls < prev    next >
Encoding:
Text File  |  1998-03-20  |  308 b   |  17 lines

  1. on keyDown
  2.   if the key = RETURN then
  3.     nothing()
  4.     dontPassEvent()
  5.   else
  6.     if the number of chars in field "eMailAdresse" < 10 then
  7.       pass()
  8.     else
  9.       if (the keyCode = 117) or (the key = BACKSPACE) then
  10.         pass()
  11.       else
  12.         dontPassEvent()
  13.       end if
  14.     end if
  15.   end if
  16. end
  17.