User Guide
1146 Slide class (Flash Professional only)
Example
This example turns off automatic keyboard navigation for the slide named loginSlide.
_root.Presentation.loginSlide.autoKeyNav = "false";
See also
Slide.defaultKeydownHandler
Slide.currentChildSlide
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
mySlide.currentChildSlide
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