User Guide
trackCount (Sprite) 1049
Example
This statement turns the traceScript property on.
-- Lingo syntax
_movie.traceScript = TRUE
// JavaScript syntax
_movie.traceScript = true;
See also
Movie
trackCount (Member)
Usage
-- Lingo syntax
memberObjRef.trackCount()
// JavaScript syntax
memberObjRef.trackCount();
Description
Digital video cast member property; returns the number of tracks in the specified digital video
cast member.
This property can be tested but not set.
Example
This statement determines the number of tracks in the digital video cast member Jazz Chronicle
and displays the result in the Message window:
-- Lingo syntax
put(member("Jazz Chronicle").trackCount())
// JavaScript syntax
trace(member("Jazz Chronicle").trackCount());
trackCount (Sprite)
Usage
-- Lingo syntax
spriteObjRef.trackCount()
// JavaScript syntax
spriteObjRef.trackCount();
Description
Digital video sprite property; returns the number of tracks in the specified digital video sprite.
This property can be tested but not set.