home *** CD-ROM | disk | FTP | other *** search
/ PC Play: Horror & Adventure / HORROR.ISO / demos / backpack / bp2_rsrc / newtrav.dxr / 00137.ls < prev    next >
Encoding:
Text File  |  1997-01-22  |  353 b   |  18 lines

  1. on mouseUp
  2.   set the editableText of sprite 9 to 0
  3.   set the editableText of sprite 8 to 1
  4. end
  5.  
  6. on keyDown
  7.   case the key of
  8.     RETURN, TAB:
  9.       set the editableText of sprite 9 to 1
  10.       set the editableText of sprite 8 to 0
  11.       puppetSound("ReturnSound")
  12.     otherwise:
  13.       puppetSound("TypeSound")
  14.       pass()
  15.   end case
  16.   updateStage()
  17. end
  18.