home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1998 October / DPPCPRO1098.ISO / Quiktour / DBEXPERT.DXR / 00091.ls < prev    next >
Encoding:
Text File  |  1995-12-04  |  669 b   |  33 lines

  1. on mouseDown
  2.   global gPbutnState
  3.   if gPbutnState = 0 then
  4.     set the visible of sprite 24 to 0
  5.     set the visible of sprite 23 to 0
  6.   end if
  7.   if gPbutnState = 1 then
  8.     set the visible of sprite 24 to 0
  9.     set the visible of sprite 23 to 0
  10.   end if
  11.   if gPbutnState = 2 then
  12.     nothing()
  13.   end if
  14.   updateStage()
  15. end
  16.  
  17. on mouseUp
  18.   global gPbutnState
  19.   if gPbutnState = 2 then
  20.     set gPbutnState to 0
  21.     set the visible of sprite 24 to 1
  22.     set the visible of sprite 23 to 0
  23.     updateStage()
  24.     continue()
  25.   else
  26.     set gPbutnState to 2
  27.     set the visible of sprite 24 to 0
  28.     set the visible of sprite 23 to 0
  29.     updateStage()
  30.     pause()
  31.   end if
  32. end
  33.