home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1996 June / PCPRO_696.ISO / specials / c-pp / 01 / 01.dir / 00036.ls < prev    next >
Encoding:
Text File  |  1995-12-12  |  411 b   |  28 lines

  1. on mouseUp
  2.   global gEnableButtons
  3.   if gEnableButtons then
  4.     set s to the clickOn
  5.     if s = 8 then
  6.       go("j1")
  7.     end if
  8.     if s = 9 then
  9.       go("j2")
  10.     end if
  11.     if s = 10 then
  12.       go("j3")
  13.     end if
  14.     if s = 11 then
  15.       go("j4")
  16.     end if
  17.     if s = 12 then
  18.       go("j5")
  19.     end if
  20.     if s = 13 then
  21.       go("j6")
  22.     end if
  23.     if s = 14 then
  24.       go("j7")
  25.     end if
  26.   end if
  27. end
  28.