home *** CD-ROM | disk | FTP | other *** search
/ Encyklopedia Omnia / Planeta.iso / data / s_gen.dir / 00019_prepOJ5.ls < prev    next >
Encoding:
Text File  |  2000-11-09  |  549 b   |  20 lines

  1. property oldLevel
  2.  
  3. on enterFrame
  4.   global gCatenaccio, gInfoContext
  5.   set gInfoContext to "s_05"
  6.   trackNewMilestone(the frame)
  7.   set gCatenaccio to #null
  8.   set oldLevel to the volume of sound 2
  9.   set the volume of sound 2 to 40
  10.   set the MouseUpHandler of sprite(2) to "handleMouseUpOBJau360"
  11.   set the MouseDownHandler of sprite(2) to "handleMouseDownCommon"
  12.   set the MovieMouseClick of sprite(2) to 0
  13.   set the MovieKeys of sprite(2) to 0
  14. end
  15.  
  16. on exitFrame
  17.   set the volume of sound 2 to oldLevel
  18.   set the MovieMouseClick of sprite(2) to 1
  19. end
  20.