home *** CD-ROM | disk | FTP | other *** search
/ Hope PC Multimedia SuperPack 2 / HOMEPC.iso / TAROT / DOWNLOAD / VT3.ZIP / C1.DXR / 00191.ls < prev    next >
Encoding:
Text File  |  1995-11-02  |  817 b   |  36 lines

  1. on mouseDown
  2.   global MH, Opt, Cnt
  3.   set Opt to the optionDown
  4.   set Cnt to the controlDown
  5.   puppetSound("NavClick")
  6.   puppetSprite(10, 1)
  7.   set MH to the mouseH
  8.   if MH < 50 then
  9.     set the castNum of sprite 10 to the number of cast "DIP.Nav.Sel"
  10.     set the locH of sprite 10 to 23
  11.     set the locV of sprite 10 to 457
  12.   else
  13.     set the castNum of sprite 10 to the number of cast "DIP.Help.Sel"
  14.     set the locH of sprite 10 to 617
  15.     set the locV of sprite 10 to 455
  16.   end if
  17.   updateStage()
  18. end
  19.  
  20. on mouseUp
  21.   global moviePath, retMovie, logged, MH, Opt, Cnt, CardsDealt
  22.   set the locH of sprite 10 to -500
  23.   updateStage()
  24.   puppetSprite(10, 0)
  25.   if MH < 50 then
  26.     if Opt then
  27.       keySound("DIVGNAV")
  28.     else
  29.       puppetSound("DemoUnav")
  30.     end if
  31.     return 
  32.   else
  33.     keySound("BHELPC")
  34.   end if
  35. end
  36.