imageQuality

Usage

-- Lingo syntax
_movie.imageQuality
memberObjRef.imageQuality

// JavaScript syntax
_movie.imageQuality;
memberObjRef.imageQuality;

Description

Movie and bitmap cast member property; indicates the level of compression to use when a movie's imageCompression property is set to #jpeg. Read/write during authoring only.

The range of acceptable values is 0-100. Zero yields the lowest image quality and highest compression; 100 yields the highest image quality and lowest compression.

You can set this property only during authoring and it has no effect until the movie is saved in Shockwave Player format.

Example

This statement displays in the Message window the imageQuality that applies to the currently playing movie:

-- Lingo syntax
put(_movie.imageQuality)

// JavaScript syntax
put(_movie.imageQuality);

See also

imageCompression, Movie