home *** CD-ROM | disk | FTP | other *** search
/ Painter Bear's Language Bridge — Italian / Bridge_ponte_itialian.iso / pc / helpers / open.dxr / 00027_score.ls < prev    next >
Encoding:
Text File  |  2001-02-22  |  567 b   |  24 lines

  1. on exitFrame
  2.   global gCurrSndList, gCurrAnimaList
  3.   go(the frame)
  4. end
  5.  
  6. on keyUp
  7.   global gPopped, gLastPopOk
  8.   if gPopped = 1 then
  9.     if "abcdefghijklmnopqrstuvwxyz" contains the key then
  10.       putInInit(the key)
  11.     else
  12.       if (charToNum(the key) = 177) or (charToNum(the key) = 8) then
  13.         putInInit("!")
  14.       else
  15.         if (the key = RETURN) and (the name of member the memberNum of sprite gLastPopOk of castLib "score" = "ok up") then
  16.           clearTypeWriter("1")
  17.         else
  18.           nothing()
  19.         end if
  20.       end if
  21.     end if
  22.   end if
  23. end
  24.