Livecode Wiki
Advertisement

Specifies the color of grouped text.Syntax:

set the linkColor of <stack> to {empty | <colorName> | <RGBColor>}

Examples:

set the linkColor to "#99CC00"
set the linkColor of the mouseStack to the hiliteColor of me

Use the linkColor property to make grouped text look and behave like links in a web browser.

Visited text is text whose visited property is true. This property is set to true when the user has clicked a text group during the current session.

If the linkColor of a stack is empty, grouped text in that stack is shown with the global linkColor property if the text's visited property is false.

If the linkColor of a stack is not empty, unvisited grouped text in that stack is shown with the stack's linkColor property, regardless of the global setting. property, regardless of the global setting.

See also: stack (object),backgroundColor (property),colors (property),visited (property),foregroundColor (property),

Advertisement