Lingo Dictionary > O-R > posterFrame

 

posterFrame

Syntax

member(whichFlashMember).posterFrame
the posterFrame of member whichFlashMember

Description

Flash cast member property; controls which frame of a Flash movie cast member is used for its thumbnail image. This property specifies an integer corresponding to a frame number in the Flash movie.

This property can be tested and set. The default value is 1.

Example

This handler accepts a reference to a Flash movie cast member and a frame number as parameters, and it then sets the thumbnail of the specified movie to the specified frame number:

on resetThumbnail whichFlashMovie, whichFrame
	member(whichFlashMovie).posterFrame = whichFrame
end