home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 April / Macworld (1999-04).dmg / Cool Specials / Al Morale Demo / Al's Stuff / D200.DCR / 00010_Enter Name special.ls < prev    next >
Encoding:
Text File  |  1999-02-16  |  509 b   |  21 lines

  1. on enterFrame
  2.   if the keyPressed = RETURN then
  3.     set NameCheck to the text of member "UserName"
  4.     if NameCheck = "Type your name here" then
  5.       alert("Please personalize your copy of Al Morale by entering your name.")
  6.       go(the frame)
  7.     else
  8.       if length(field "UserName") = 0 then
  9.         alert("Please personalize your copy of Al Morale by entering your name.")
  10.         go(the frame)
  11.       else
  12.         go(the frame + 1)
  13.       end if
  14.     end if
  15.   end if
  16. end
  17.  
  18. on exitFrame
  19.   go(the frame)
  20. end
  21.