User Guide
702 Chapter 6: Components Dictionary
Description
Property (read-only); returns the immediate child of mySlide that contains the currently active
slide; returns
null if no child slide contained by mySlide has the current focus.
Example
Consider the following screen outline:
Presentation
Slide_1
Bullet1_1
SubBullet1_1_1
Bullet1_2
SubBullet1_2_1
Slide_2
Assuming that SubBullet1_1_1 is the current slide, then the following statements are all true:
Presentation.currentChildSlide == Slide_1;
Slide_1.currentChildSlide == Bullet_1_1;
SubBullet_1_1_1.currentChildSlide == null;
Slide_2.currentChildSlide == null;
See also
Slide.currentSlide
Slide.currentFocusedSlide
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
mx.screens.Slide.currentFocusedSlide
Description
Property (read-only); returns the “leafmost” slide (the slide farthest from the root of the slide tree)
that contains the current global focus. The actual focus may be on the slide itself, or on a movie
clip, text object, or component inside that slide; the method returns
null if there is no current
focus.
Example
var focusedSlide = mx.screens.Slide.currentFocusedSlide;