thumbNail

Usage

-- Lingo syntax
memberObjRef.thumbNail

// JavaScript syntax
memberObjRef.thumbNail;

Description

Member property; contains the image used to preview a cast member in the Cast window. Read/write during authoring only.

The image can be customized for any cast member.

Example

The following statement shows how to use a placeholder cast member to display another thumbnail on the Stage. The placeholder cast member is placed on the Stage, then the picture of that member is set to the thumbnail of member 10. This makes it possible to show a reduced image without having to scale or otherwise manipulate a graphic:

-- Lingo syntax
member("Placeholder").picture = member(10).thumbNail

// JavaScript syntax
member("Placeholder").picture = member(10).thumbNail;

See also

Member