User Guide
startTimeList 1009
startTime
Usage
-- Lingo syntax
soundChannelObjRef.startTime
// JavaScript syntax
soundChannelObjRef.startTime;
Description
Sound Channel property; indicates the start time of the currently playing or paused sound as set
when the sound was queued. Read-only.
This property cannot be set after the sound has been queued. If no value was supplied when the
sound was queued, this property returns 0.
Example
This statement starts the digital video sprite in channel 5 at 100 ticks into the digital video:
-- Lingo syntax
sprite(5).startTime = 100
// JavaScript syntax
sprite(5).startTime = 100;
See also
Sound Channel
startTimeList
Usage
-- Lingo syntax
dvdObjRef.startTimeList
// JavaScript syntax
dvdObjRef.startTimeList;
Description
DVD property; a property list that specifies the time or chapter at which playback starts.
Read/write.
A
startTimeList is a property list that can be either chapter based or time based.
A chapter based
startTimeList contains the following properties:
• title. Specifies the title that contains the chapter to play.
• chapter. Specifies the chapter to play.
This startTimeList starts playing at chapter 2 of title 1:
[#title:1, #chapter:2]