home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Clips / SelectSoftPublishing-StockClips-MultimediaClips-WinMac.bin / pc / PROGRAM / LOGO.Dxr / Lingo_1.ls < prev    next >
Encoding:
Text File  |  2006-01-01  |  537 b   |  30 lines

  1. on startMovie
  2.   global gDefaultSoundLevel
  3.   clearGlobals()
  4.   cursor(-1)
  5.   set gDefaultSoundLevel to the soundLevel
  6.   set the soundLevel to 3
  7.   updateStage()
  8. end
  9.  
  10. on stopMovie
  11.   global gDefaultSoundLevel
  12.   set the soundLevel to gDefaultSoundLevel
  13.   updateStage()
  14.   clearGlobals()
  15.   unLoad()
  16. end
  17.  
  18. on hSetupClickAnywhere pHandler
  19.   set the mouseDownScript to pHandler
  20. end
  21.  
  22. on hExitAnywhereInLogo
  23.   cursor(4)
  24.   puppetSound(1, 0)
  25.   updateStage()
  26.   set the volume of sound 1 to 255
  27.   go(1, "612DUMMY.DIR")
  28.   set the mouseUpScript to EMPTY
  29. end
  30.