home *** CD-ROM | disk | FTP | other *** search
/ Fuji Wa La Te I Ka - Hyakunin Isshu Karuta / KARUTA.bin / wins / dan256.dir / 00433_Script_433 < prev    next >
Text File  |  1995-11-10  |  1KB  |  48 lines

  1. on mouseDown
  2.   global 
  3.   put clickOn() into vSpriteNum
  4.   
  5.   set the cursor of sprite vSpriteNum = 290
  6.   
  7.   put mouseH() into mh -- δ┤╟╡╟²
  8.   put mouseV() into mv -- δ┤╟╡╟²
  9.   
  10.   if not the puppet of sprite vSpriteNum then 
  11.     puppetSprite vSpriteNum, TRUE
  12.   end if
  13.   
  14.   repeat while stillDown()
  15.     if mouseH() <> mh or mouseV() <> mv then 
  16.       set the locH of sprite vSpriteNum = mouseH()
  17.       set the locV of sprite vSpriteNum = mouseV()
  18.     end if   
  19.     updatestage
  20.   end repeat
  21.   
  22.   if sprite vSpriteNum intersects 40 then   
  23.     set the locH of sprite vSpriteNum to 194
  24.     set the locV of sprite vSpriteNum to 165
  25.   else
  26.     if sprite vSpriteNum intersects 41 then   
  27.       set the locH of sprite vSpriteNum to 374
  28.       set the locV of sprite vSpriteNum to 165
  29.     else
  30.       puppetSprite vSpriteNum,FALSE
  31.     end if
  32.   end if
  33.   repeat with n = 14 to 22
  34.     if vSpriteNum = n then  
  35.       next repeat     
  36.     else
  37.       if sprite vSpriteNum intersects n then puppetSprite n,FALSE
  38.     end if
  39.   end repeat
  40.   
  41.   updatestage
  42. end  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.