home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 February / PCWorld_2002-02_cd.bin / Software / Komercni / Gopas / pwp1 / cz8004as.dcr / Behaviors_28.ls < prev    next >
Encoding:
Text File  |  2002-01-14  |  416 b   |  23 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, 659, 375)
  6.     set the blend of sprite 4 to 0
  7.     cursor(2)
  8.     updateStage()
  9.   end repeat
  10. end
  11.  
  12. on mouseUp
  13.   if (the mouseH >= 521) and (the mouseH <= 545) and (the mouseV >= 283) and (the mouseV <= 299) then
  14.     Advance()
  15.   else
  16.     Try_again()
  17.   end if
  18. end
  19.  
  20. on exitFrame
  21.   go(the frame)
  22. end
  23.