User Guide
708 Chapter 6: Components Dictionary
Example
In the slide hierarchy illustrated below, the following method calls would navigate to the slide
named
Intro_bullet_1_2:
Presentation.Intro.gotoLastSlide();
Presentation.Intro.Intro_bullet_1.gotoLastSlide();
These method calls would navigate to the slide named Intro_bullet_2_1:
Presentation.gotoLastSlide();
Presentation.Intro.gotoLastSlide();
See also
Slide.gotoSlide()
, Slide.lastSlide
Slide.gotoNextSlide()
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.
Usage
mySlide.gotoNextSlide()
Parameters
None.
Returns
A Boolean value, or null. The method returns true if it successfully navigated to the next slide; it
returns
false if the presentation is already at the last slide when the method is invoked (that is, if
currentSlide.nextSlide is null). The method returns null if invoked on a slide that doesn’t
contain the current slide.