User Guide
Slide.gotoPreviousSlide() 1157
Example
Suppose that, in the following slide hierarchy, the slide named Intro_bullet_1_2 is the
current slide being viewed (that is,
_root.Presentation.currentSlide._name ==
Intro_bullet_1_2
).
In this case, calling
Intro_bullet_1_2.gotoPreviousSlide() would navigate to
Intro_bullet_1_1, which is the previous sibling slide of Intro_bullet_1_2.
However, calling
Intro_bullet_2.gotoPreviousSlide() would navigate to
Intro_bullet_1_1, the first leaf slide contained by Intro_bullet_1, which is the previous
sibling slide of
Intro_bullet_2. Similarly, calling Results.gotoPreviousSlide() would
navigate to
Intro_bullet_1_1, the first leaf slide contained by the Intro slide.
Also, if the current slide is
Intro_bullet_1_1, then calling Results.gotoPreviousSlide()
would have no effect, since
Results does not contain the current slide (that is,
Results.currentSlide is null).
See also
Slide.currentSlide, Slide.gotoNextSlide(), Slide.previousSlide