User Guide
status 1015
staticQuality
Usage
-- Lingo syntax
spriteObjRef.staticQuality
// JavaScript syntax
spriteObjRef.staticQuality;
Description
QuickTime VR sprite property; specifies the codec quality used when the panorama image is
static. Possible values are
#minQuality, #maxQuality, and #normalQuality.
This property can be tested and set.
status
Usage
-- Lingo syntax
soundChannelObjRef.status
// JavaScript syntax
soundChannelObjRef.status;
Description
Sound Channel property; indicates the status of a sound channel. Read-only.
Possible values include:
Example
This statement displays the current status of sound channel 2 in the Message window:
-- Lingo syntax
put(sound(2).status)
// JavaScript syntax
put(sound(2).status);
See also
Sound Channel
Status Name Meaning
0 Idle No sounds are queued or playing.
1 Loading A queued sound is being preloaded but is not yet playing.
2 Queued The sound channel has finished preloading a queued sound but is not yet
playing the sound.
3 Playing A sound is playing.
4PausedA sound is paused.