home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- if the visible of window "help" then
- tell window "help"
- go("pref4")
- 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 mouseUp
- global gDb, gGreen
- if not (the visible of window "help") then
- repeat with i = 11 to 13
- set the visible of sprite i to 0
- end repeat
- if the mouseH <= 265 then
- set the visible of sprite 11 to 1
- set gDb to 70
- else
- if the mouseH >= 299 then
- set the visible of sprite 13 to 1
- set gDb to 128
- else
- set the visible of sprite 12 to 1
- set gDb to 90
- end if
- end if
- updateStage()
- if integer(field "fieldMasterVol") > gDb then
- put gDb into field "fieldMasterVol"
- IKMasterVolume(gDb)
- set the foreColor of field "fieldMasterVol" to gGreen
- end if
- end if
- end
-