home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global theButtonLine
- if the doubleClick and (the mouseLine <> -1) then
- dontPassEvent()
- exit
- end if
- set lastIndexLine to -1
- set mLine to the mouseLine
- if mLine = -1 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 42 to 255
- set the foreColor of line mLine of field 42 to 3
- set lastIndexLine to mLine
- set executeOnce to 1
- set temp to the text of field string(line mLine of field 42)
- set the text of field "hText" to temp
- setArticleBody("hText")
- set the text of field "hTitle" to string(line mLine of field 42)
- setDispHead2("hTitle")
- set theButtonLine to line mLine of field "hListScr"
- set the castNum of sprite 2 to cast string(item 2 of theButtonLine)
- updateStage()
- end if
- end repeat
- end if
- end
-