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

  1. on mouseDown
  2.   global gXbutnState
  3.   if gXbutnState = 0 then
  4.     set the visible of sprite 26 to 0
  5.     set the visible of sprite 27 to 0
  6.   end if
  7.   if gXbutnState = 1 then
  8.     set the visible of sprite 26 to 0
  9.     set the visible of sprite 27 to 0
  10.   end if
  11.   updateStage()
  12. end
  13.  
  14. on mouseUp
  15.   global gXbutnState
  16.   set gXbutnState to 0
  17.   delay(20)
  18.   set the visible of sprite 26 to 0
  19.   set the visible of sprite 27 to 1
  20.   updateStage()
  21.   go(1, "COPYRITE.DXR")
  22. end
  23.