home *** CD-ROM | disk | FTP | other *** search
/ Mundo do CD-ROM 15 / MUNDO15.iso / entrete / Osmar / CENA7.DXR / 00129.ls < prev    next >
Encoding:
Text File  |  1997-10-13  |  725 b   |  28 lines

  1. on startMovie
  2.   set the keyDownScript to "keydownhandle"
  3.   set the cursor of sprite 45 to [122, 123]
  4.   set the cursor of sprite 46 to [122, 123]
  5.   set the cursor of sprite 47 to [122, 123]
  6.   set the cursor of sprite 48 to [122, 123]
  7.   set the visible of sprite 43 to 0
  8. end
  9.  
  10. on keydownhandle
  11.   if (the key = "q") or (the key = "Q") then
  12.     go("sair")
  13.   end if
  14.   if (the key = "s") or (the key = "S") then
  15.     go("sair")
  16.   end if
  17.   if the visible of sprite 43 = 0 then
  18.     if (the key = "t") or (the key = "T") then
  19.       set the visible of sprite 43 to 1
  20.     end if
  21.   end if
  22.   if the visible of sprite 43 = 1 then
  23.     if (the key = "n") or (the key = "N") then
  24.       set the visible of sprite 43 to 0
  25.     end if
  26.   end if
  27. end
  28.