home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 22 / cdrt22.iso / pc / bugbook / bugdemo.dir / 00170_Script_170 < prev    next >
Text File  |  1995-06-27  |  709b  |  31 lines

  1. on startMovie
  2.   global localDir,homeDir
  3.   set the timeOutScript to EMPTY
  4.   set localDir=the pathName
  5.   set homeDir = the pathName
  6.   cursor 200
  7.   set the volume of sound 2 to 60
  8. --  set the volume of sound 1 to 60
  9.   set the mouseDownScript to "LeaveMovie"
  10. end startMovie
  11.  
  12. on stopMovie
  13.   cursor 4
  14.   sound stop 1
  15.   sound stop 2
  16.   set the volume of sound 2 to 256
  17.   set the volume of sound 1 to 256
  18.   set the mouseDownScript to EMPTY
  19.   unLoad
  20. end stopMovie
  21.  
  22. on leaveMovie
  23.   global localDir
  24.   cursor 4
  25.   sound stop 1
  26.   sound stop 2
  27.   set the volume of sound 2 to 256
  28.   set the volume of sound 1 to 256
  29.   set the mouseDownScript to EMPTY
  30.   go movie localDir & "wait.dir"
  31. end leaveMovie