home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- if the visible of window "Help" then
- tell window "help"
- go("volume")
- end tell
- end if
- end
-
- on mouseLeave
- if the visible of window "Help" then
- tell window "help"
- go("start")
- end tell
- end if
- end
-
- on mouseDown
- global gDb, gSong
- if not (the visible of window "Help") then
- set start to integer(field "fieldMasterVol") - 16
- repeat while the mouseDown
- set the visible of sprite 12 to 1
- set masterVol to start + (435 - the mouseV)
- if masterVol > gDb then
- set masterVol to gDb
- end if
- if masterVol < 0 then
- set masterVol to 0
- end if
- put masterVol into field "fieldMasterVol"
- if gSong <> EMPTY then
- set the volume of member "preview" to 255 * integer(masterVol) / 128
- end if
- IKMasterVolume(masterVol)
- end repeat
- set the textFont of member "fieldMasterVol" to "GMfont"
- set the foreColor of member "fieldMasterVol" to 54
- end if
- end
-
- on mouseUp
- if not (the visible of window "Help") then
- set the visible of sprite 12 to 0
- end if
- end
-