Lingo Dictionary > T-Z > useHypertextStyles

 

useHypertextStyles

Syntax

member(whichTextMember).useHypertextStyles

Description

Text cast member property; controls the display of hypertext links in the text cast member.

When useHypertextStyles is TRUE, all links are automatically colored blue with underlines, and the cursor changes to a pointing finger when it is over a link.

Setting this property to FALSE turns off the automatic formatting and cursor change.

Example

This behavior toggles the formatting of hypertext on and off in text cast member "myText":

on mouseUp
	member("myText").usehypertextStyles = not member("myText").usehypertextStyles
end