User Guide
1058 Chapter 14: Properties
See also
interpolateTo(), scale (transform), rotation (transform), position
(transform), bone, worldTransform, preRotate, preScale(), preTranslate()
transitionType
Usage
member(whichCastMember).transitionType
the transitionType of member whichCastMember
Description
Transition cast member property; determines a transition’s type, which is specified as a
number. The possible values are the same as the codes assigned to transitions for the
puppetTransition command.
Example
This statement sets the type of transition cast member 3 to 51, which is a pixel dissolve
cast member:
member(3).transitionType = 51
transitionXtraList
Usage
-- Lingo syntax
_player.transitionXtraList
// JavaScript syntax
_player.transitionXtraList;
Description
Player property; returns a linear list of all transition Xtra extensions available to the Director
player. Read-only.
Example
This statement displays in the Message window all available transition Xtra extensions.
-- Lingo syntax
put(_player.transitionXtraList)
// JavaScript syntax
put(_player.transitionXtraList);
See also
mediaXtraList, Player, scriptingXtraList, toolXtraList, xtraList (Player)