home *** CD-ROM | disk | FTP | other *** search
- on mouseEnter
- if the visible of window "Help" then
- tell window "help"
- go("seq5")
- 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 gStartSeq, gPlaySeq, gYellow, markerList
- if not gPlaySeq and not (the visible of window "help") then
- if the mouseWord <> -1 then
- set click to the mouseWord
- if click <= count(markerList) then
- set the foreColor of word gStartSeq of field "fieldMarkerSeq" to 0
- set the foreColor of word click of field "fieldMarkerSeq" to gYellow
- updateStage()
- set gStartSeq to integer(click)
- end if
- end if
- end if
- set the editable of member "fieldBpm" to 0
- end
-