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

  1. on checkForTop20
  2.   global gMouseDownTimer, gvHelpButtonSprite
  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 gvHelpButtonSprite) and (vMouseH > the left of sprite gvHelpButtonSprite) then
  9.         doHelpButton()
  10.       else
  11.         handleClickInAlphabetStrip(vMouseH, vMouseV)
  12.       end if
  13.     end if
  14.     set gMouseDownTimer to the timer
  15.   end if
  16. end
  17.