1080
Chapter 14: Properties
video (RealMedia, Windows Media)
Usage
-- Lingo syntax
memberOrSpriteObjRef
.video
// JavaScript syntax
memberOrSpriteObjRef
.video;
Description
RealMedia and Windows Media property; allows you to set or get whether the sprite or cast
member renders video (
TRUE
or 1) or only plays the sounds (
FALSE
or 0). Read/write.
Integer values other than 1 or 0 are treated as
TRUE
.
Use this property to suppress the video while playing the audio component of a RealMedia or
Windows Media cast member, or to toggle the video on and off during playback.
Example
The following examples show that the video property for sprite 2 and the cast member Real is set
to
TRUE
.
-- Lingo syntax
put(sprite(2).video) -- 1
put(member("Real").video) -- 1
// JavaScript syntax
put(sprite(2).video); // 1
put(member("Real").video); // 1
The following examples set the
video
property to
FALSE
for the RealMedia video element of
sprite 2 and the cast member Real.
-- Lingo syntax
sprite(2).video = FALSE
member("Real").video = FALSE
// JavaScript syntax
sprite(2).video = 0;
member("Real").video = 0;
videoFormat
Usage
-- Lingo syntax
dvdObjRef
.videoFormat
// JavaScript syntax
dvdObjRef
.videoFormat;
Description
DVD property. Returns a symbol that indicates the video format. Read-only.
Содержание DIRECTOR MX 2004-DIRECTOR SCRIPTING
Страница 1: ...DIRECTOR MX 2004 Director Scripting Reference...
Страница 48: ...48 Chapter 2 Director Scripting Essentials...
Страница 100: ...100 Chapter 4 Debugging Scripts in Director...
Страница 118: ...118 Chapter 5 Director Core Objects...
Страница 594: ...594 Chapter 12 Methods...
Страница 684: ...684 Chapter 14 Properties See also DVD...
Страница 702: ...702 Chapter 14 Properties See also face vertices vertices flat...
Страница 856: ...856 Chapter 14 Properties JavaScript syntax sprite 15 member member 3 4...
Страница 889: ...netPresent 889 _player alert Sorry the Network Support Xtras could not be found See also Player...
Страница 1102: ...1102 Chapter 14 Properties...