home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 February / PCWorld_2002-02_cd.bin / Software / Komercni / Gopas / pwp1 / cz8004as.dcr / Behaviors_34.ls < prev    next >
Encoding:
Text File  |  2002-01-14  |  402 b   |  22 lines

  1. on mouseDown
  2.   repeat while the stillDown
  3.     l = the mouseH
  4.     t = the mouseV
  5.     set the rect of sprite 19 to rect(l, t, 562, 288)
  6.     set the blend of sprite 4 to 0
  7.     updateStage()
  8.   end repeat
  9. end
  10.  
  11. on mouseUp
  12.   if (the mouseH >= 324) and (the mouseH <= 340) and (the mouseV >= 194) and (the mouseV <= 210) then
  13.     Advance()
  14.   else
  15.     Try_again()
  16.   end if
  17. end
  18.  
  19. on exitFrame
  20.   go(the frame)
  21. end
  22.