trackStartTime (Sprite)
Usage
-- Lingo syntax
spriteObjRef.trackStartTime(whichTrack)
// JavaScript syntax
spriteObjRef.trackStartTime(whichTrack);
Description
Digital video sprite property; sets the starting time of a digital video movie in the specified sprite
channel. The value of
This property can be tested but not set.
Example
In the Message window, the following statement reports when track 5 in sprite channel 10 starts
playing. The starting time is 120 ticks (2 seconds) into the track.
-- Lingo syntax
put(sprite(10).trackStartTime(5))
// JavaScript syntax
put(sprite(10).trackStartTime(5));
See also
duration
(Member),
trackStopTime (Member)
Usage
-- Lingo syntax
memberObjRef.trackStopTime(whichTrack)
// JavaScript syntax
memberObjRef.trackStopTime(whichTrack);
Description
Digital video cast member property; returns the stop time of the specified track of the specified
digital video cast member. It can be tested but not set.
Example
This statement determines the stop time of track 5 in the digital video cast member Jazz
Chronicle and displays the result in the Message window:
-- Lingo syntax
put(member("Jazz Chronicle").trackStopTime(5))
// JavaScript syntax
put(member("Jazz Chronicle").trackStopTime(5));
is measured in ticks.
trackStartTime
playRate (QuickTime,
AVI),
currentTime (QuickTime, AVI)
trackStopTime (Member) 1053
Need help?
Do you have a question about the DIRECTOR MX 2004-DIRECTOR SCRIPTING and is the answer not in the manual?
Questions and answers