home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 December / macformat-031.iso / mac / Demos / LOUVRE / CG074.DXR / 00026.ls < prev    next >
Encoding:
Text File  |  1995-02-28  |  253 b   |  17 lines

  1. on startMovie
  2.   when mouseDown then Play done
  3. end
  4.  
  5. on PlaySound chan, theFile
  6.   set theFile to the pathName & theFile
  7.   sound playFile chan, theFile
  8. end
  9.  
  10. on WaitForSound chan
  11.   if soundBusy(chan) then
  12.     go(the frame)
  13.   else
  14.     nothing()
  15.   end if
  16. end
  17.