User Guide

718 Chapter 6: Components Dictionary
If mySlide is the root slide in a presentation, this property returns false, because the
presentation slides parent is the main Timeline (_level0), not a slide. This property also returns
false if a form is the parent of mySlide.
Example
The following code determines whether the parent object of the slide mySlide is itself a slide. If
mySlide.parentIsSlide is true, the number of mySlides sibling slides is displayed in the
Output panel. If the parent object is not a slide, Flash assumes that
mySlide is the root (master)
slide in the presentation and therefore has no sibling slides.
if (mySlide.parentIsSlide) {
trace("I have " + mySlide._parent.numChildSlides+" sibling slides");
} else {
trace("I am the root slide and have no siblings");
}
See also
Slide.numChildSlides
Slide.playHidden
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
mySlide.playHidden
Description
Property; a Boolean value that specifies whether mySlide should continue to play when it is
hidden. When this property is
true, mySlide continues to play when hidden. When set to
false, mySlide is stopped upon being hidden; upon being revealed, play restarts at Frame 1
of
mySlide.
Slide.previousSlide
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
mySlide.previousSlide