home *** CD-ROM | disk | FTP | other *** search
/ Hope PC Multimedia SuperPack 2 / HOMEPC.iso / TAROT / DOWNLOAD / VT1.ZIP / D1.DXR / 00120.ls < prev    next >
Encoding:
Text File  |  1995-11-01  |  1.3 KB  |  48 lines

  1. on mouseDown
  2.   global TimeKeeper, clickOn
  3.   puppetSound("Slide-In")
  4.   updateStage()
  5.   set TimeKeeper to the ticks
  6.   if (the mouseV > 219) and (the mouseV < 232) then
  7.     go("Cal")
  8.   else
  9.     if (the mouseV > 241) and (the mouseV < 251) then
  10.       go("Career")
  11.     else
  12.       if (the mouseV > 260) and (the mouseV < 271) then
  13.         set clickOn to 1
  14.         go("CC")
  15.       else
  16.         if (the mouseV > 279) and (the mouseV < 290) then
  17.           go("Choices")
  18.         else
  19.           if (the mouseV > 298) and (the mouseV < 311) then
  20.             go("Daily")
  21.           else
  22.             if (the mouseV > 318) and (the mouseV < 331) then
  23.               go("Health")
  24.             else
  25.               if (the mouseV > 338) and (the mouseV < 352) then
  26.                 go("Life")
  27.               else
  28.                 if (the mouseV > 359) and (the mouseV < 370) then
  29.                   go("Love")
  30.                 else
  31.                   if (the mouseV > 379) and (the mouseV < 391) then
  32.                     set clickOn to 1
  33.                     go("Money")
  34.                   else
  35.                     if (the mouseV > 400) and (the mouseV < 413) then
  36.                       go("Rel")
  37.                     end if
  38.                   end if
  39.                 end if
  40.               end if
  41.             end if
  42.           end if
  43.         end if
  44.       end if
  45.     end if
  46.   end if
  47. end
  48.