home *** CD-ROM | disk | FTP | other *** search
/ PC Open 10 / pcopen10.iso / aaron / dida / sequenz.dxr / 00028_play.ls < prev    next >
Encoding:
Text File  |  1997-09-24  |  470 b   |  27 lines

  1. on mouseDown
  2.   global play, tasto, INIZIO
  3.   if tasto <> 0 then
  4.     if soundBusy(1) then
  5.       sound stop 1
  6.     end if
  7.     pigia()
  8.     nascondi()
  9.     puppetSprite(10, 1)
  10.     if INIZIO then
  11.       set the memberNum of sprite 10 to 40
  12.     else
  13.       if play then
  14.         set the memberNum of sprite 10 to 39
  15.       else
  16.         set the memberNum of sprite 10 to 40
  17.       end if
  18.       updateStage()
  19.     end if
  20.   end if
  21. end
  22.  
  23. on mouseUp
  24.   global play, tasto, INIZIO
  25.   hap()
  26. end
  27.