User Guide
streamMode 1017
stopTimeList
Usage
-- Lingo syntax
dvdObjRef.stopTimeList
// JavaScript syntax
dvdObjRef.stopTimeList;
Description
DVD property; a property list that specifies the time or chapter at which playback stops.
Read/write.
A
stopTimeList is a property list that can be either chapter based or time based.
A chapter based
stopTimeList contains the following properties:
• title. Specifies the title.
• chapter. Specifies the chapter. Playback stops after this chapter is played.
This stopTimeList stops playing at chapter 4 of title 1:
[#title:1, #chapter:4]
A time based stopTimeList contains the following properties:
• title. Specifies the title.
• hours. Specifies the hour at which playback stops.
• min. Specifies the minute at which playback stops.
• sec. Specifies the second at which playback stops.
• frames. Specifies the frames at which playback stops.
This
stopTimeList stops playing at a specific time in title 1:
[#title:1, #hours:0, #minutes:55, #seconds:45, #frames:15]
This stopTimeList only lists one time parameter:
[#title:1, #seconds:45]
The stopTimeList can be cleared by setting it to 0.
See also
DVD, play() (DVD), startTimeList
streamMode
Usage
-- Lingo syntax
memberObjRef.streamMode
// JavaScript syntax
memberObjRef.streamMode;