home *** CD-ROM | disk | FTP | other *** search
/ Headbone Interactive / Headbone_Interactive_CD-ROM_Sampler_1995.iso / pc / demos / abf / intro.dxr / 00076.ls < prev    next >
Encoding:
Text File  |  1995-09-15  |  627 b   |  22 lines

  1. on checkForTop20
  2.   global gMouseDownTimer, gvHelpSignSprite
  3.   set vLastClickTimer to the timer - the lastClick
  4.   if vLastClickTimer > (gMouseDownTimer + 30) then
  5.     set vMouseV to the mouseV
  6.     set vMouseH to the mouseH
  7.     if (vMouseV >= 0) and (vMouseV <= 20) then
  8.       if (vMouseH < the right of sprite gvHelpSignSprite) and (vMouseH > the left of sprite gvHelpSignSprite) then
  9.         handleClickHelp()
  10.       else
  11.         handleClickInAlphabetStrip(vMouseH, vMouseV)
  12.       end if
  13.     end if
  14.     set gMouseDownTimer to the timer
  15.   end if
  16. end
  17.  
  18. on setUpTop20
  19.   global gMouseDownTimer
  20.   set gMouseDownTimer to the timer
  21. end
  22.