home *** CD-ROM | disk | FTP | other *** search
/ CD Loisirs 10 / cd.iso / louvre / cg074.dxr / 00026_Script_26 < prev    next >
Text File  |  1995-07-26  |  543b  |  20 lines

  1. -- ò Louvre V1.00
  2.  
  3. -- ò ====================================================
  4. on StartMovie
  5.   when  mouseDown then Play done
  6. end StartMovie
  7. -- ò ====================================================
  8. on PlaySound chan,theFile
  9.   put (the pathname &theFile) into theFile
  10.   Sound PlayFile chan,theFile
  11. end PlaySound
  12. -- ò ====================================================
  13. on WaitForSound chan
  14.   if soundBusy(chan) then
  15.     go to the frame
  16.   else
  17.     nothing
  18.   end if
  19. end
  20. -- ò ====================================================