home *** CD-ROM | disk | FTP | other *** search
- on underlineLinks dtext, alistcast
- put "changing the style of linked text"
- put "sorry this is so *slow* ..."
- set alist to value(string(the text of cast alistcast))
- repeat while not (alist = "[:]")
- set this to getPropAt(alist, 1)
- set that to getPropAt(alist, 2)
- repeat with i = this to that
- changecharacterstyle(dtext, i)
- end repeat
- deleteAt(alist, 1)
- deleteAt(alist, 1)
- end repeat
- put "done changing style of linked text"
- end
-
- on changecharacterstyle caste, ch
- set linkStyle to "underline"
- set linkColor to 168
- set the foreColor of char ch of field caste to linkColor
- set the textStyle of char ch of field caste to linkStyle
- end
-