User Guide

866 Media components (Flash Professional only)
Description
Property; an array of cue point objects that have been assigned to a MediaPlayback or
MediaDisplay instance. In the array, each cue point object can have a name, a time in seconds
or frames, and a player property (which is the instance name of the component it is associated
with). The default value is an empty array (
[]).
Example
The following example deletes the third cue point if playing an action preview:
if (myVariable == actionPreview) {
myMedia.removeCuePoint(myMedia.cuePoints[2]);
}
See also
Media.addCuePoint(), Media.getCuePoint(), Media.removeCuePoint()
Media.displayFull()
Applies to
MediaPlayback.
Availability
Flash Player 7.
Edition
Flash MX Professional 2004.
Usage
myMedia.displayFull()
Returns
Nothing.
Description
Method; sets the MediaPlayback instance to full-screen mode. In this mode, the component
expands to fill the entire Stage. To return the component to its normal size, use
Media.displayNormal().