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

  1. on mouseDown
  2.   global Cnt, Opt
  3.   set Cnt to the controlDown
  4.   set Opt to the optionDown
  5.   if Cnt then
  6.     set Cnt to 2
  7.   end if
  8.   if Opt then
  9.     set Opt to 2
  10.   end if
  11.   puppetSound("cardDeal")
  12.   updateStage()
  13. end
  14.  
  15. on mouseUp
  16.   global Opt, Cnt
  17.   if Opt and (Cnt <> 2) then
  18.     keySound("CardHelp")
  19.     return 
  20.   end if
  21.   CCrandomCard()
  22. end
  23.