home *** CD-ROM | disk | FTP | other *** search
- global sVOLUMECONTROL, lstVolumeLoc, lstVolumeCtrl, gnSoundVolume
-
- on SetVolumeControl
- if voidp(gnSoundVolume) then
- set gnSoundVolume to the soundLevel
- end if
- set sndLvl to the soundLevel
- set the locH of sprite sVOLUMECONTROL to getAt(lstVolumeLoc, sndLvl + 1)
- end
-
- on MoveVolumeControl
- set sndLvl to the soundLevel
- set min to getAt(lstVolumeLoc, 1)
- set max to getAt(lstVolumeLoc, 8)
- repeat while the mouseDown
- set sndH to the mouseH
- if (sndH >= min) and (sndH <= max) then
- set the locH of sprite sVOLUMECONTROL to sndH
- updateStage()
- set sndXXX to 1
- repeat while sndH > getAt(lstVolumeCtrl, sndXXX)
- set sndXXX to sndXXX + 1
- end repeat
- set sndLvl to sndXXX - 1
- set the soundLevel to sndLvl
- end if
- end repeat
- set the locH of sprite sVOLUMECONTROL to getAt(lstVolumeLoc, sndLvl + 1)
- end
-
- on InitVolumeControls
- set sVOLUMECONTROL to 20
- set lstVolumeLoc to [251, 274, 298, 322, 346, 371, 395, 419]
- set lstVolumeCtrl to [266, 286, 310, 334, 358, 383, 407, 430]
- end
-