home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- if the visible of window "Help" then
- tell window "help"
- go("synth12")
- 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 gOn
- if gOn and not (the visible of window "help") then
- repeat while the mouseDown
- set the memberNum of sprite 67 to the number of member "Hopen"
- updateStage()
- end repeat
- end if
- end
-
- on mouseUp
- global gOn
- if gOn and not (the visible of window "help") then
- set the memberNum of sprite 67 to the number of member "open"
- updateStage()
- openWin("openS")
- put EMPTY into field "fieldElencoSynth"
- repeat with i = 1 to count(folderSynthList)
- put getAt(folderSynthList, i) & RETURN after field "fieldElencoSynth"
- end repeat
- set the scrollTop of member "fieldElencoSynth" to 0
- set the textFont of member "fieldElencoSynth" to "IK10"
- set the foreColor of member "fieldElencoSynth" to 0
- end if
- end
-