home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global theGoString, theKeyLine
- if the doubleClick and (the mouseLine <> -1) then
- dontPassEvent()
- exit
- end if
- set lastIndexLine to -1
- set mLine to the mouseLine
- if (mLine = -1) or (the number of chars in line mLine of field 14 <= 3) then
- pass()
- else
- set executeOnce to 0
- repeat while the stillDown or (executeOnce = 0)
- set mLine to the mouseLine
- if (mLine <> lastIndexLine) and (mLine <> -1) then
- set the foreColor of line lastIndexLine of field 14 to 255
- set the foreColor of line mLine of field 14 to 3
- set lastIndexLine to mLine
- set executeOnce to 1
- set theGoString to item mLine of line theKeyLine of field 13
- set the castNum of sprite 7 to 8
- updateStage()
- end if
- end repeat
- end if
- end
-