home *** CD-ROM | disk | FTP | other *** search
/ PC Player 1999 June / PCP0699A.iso / Demos / Malkari / Tutorial2.dxr / 00249_Global.ls < prev    next >
Encoding:
Text File  |  1999-03-03  |  327 b   |  27 lines

  1. on startMovie
  2.   global repeat
  3.   set repeat to 0
  4.   set the exitLock to 1
  5. end
  6.  
  7. on HaloModeKey
  8.   put "HaloModeKey"
  9.   if the key = "[" then
  10.     go(#next)
  11.   end if
  12. end
  13.  
  14. on NameModeKey
  15.   put "NameModeKey"
  16.   if the key = "[" then
  17.     go(#next)
  18.   end if
  19. end
  20.  
  21. on TabKey
  22.   put "TabKey"
  23.   if the key = TAB then
  24.     go(#next)
  25.   end if
  26. end
  27.