home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- if the visible of window "Help" then
- tell window "help"
- go("synth3")
- 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, folderSynthList
- if gOn and (folderSynthList <> []) and not (the visible of window "help") then
- repeat while the mouseDown
- set the memberNum of sprite 63 to the number of member "Hload"
- updateStage()
- end repeat
- end if
- end
-
- on mouseUp
- global gOn, gLoadSynth, folderSynthList
- if gOn and (folderSynthList <> []) and not (the visible of window "help") then
- set the memberNum of sprite 63 to the number of member "load"
- updateStage()
- set gLoadSynth to EMPTY
- set myFile to new(xtra("fileio"))
- setFilterMask(myFile, ".txt")
- set gLoadSynth to displayOpen(myFile)
- set myFile to 0
- end if
- end
-