Supercharge your PowerPoint productivity with
|
PPTools |
ProblemYou have a navigation slide with buttons that take the user of your presentation to other parts of the presentation. There, they may navigate here and there, you're not sure where. You may even have several levels of navigation. You want the user to be able to return to where they came from, but where they came from might not always be the same place. SolutionIn the declarations section of your code module: Option Explicit Public ReturnToSlide As Long Then add the following subs to your module:
Sub RememberWhere()
' Make the MOUSEOVER action of your navigation buttons run this
ReturnToSlide = SlideShowWindows(1).View.Slide.SlideIndex
End Sub
Sub GoBack()
' Make this the MOUSECLICK action of the Return to
On the buttons that take the user someplace, give them a MouseOver action setting of Macro and choose RememberWhere. On the buttons that are to return the user to a remembered position, assign the MouseClick action as Macro and choose GoBack. See How do I use VBA code in PowerPoint? to learn how to use this example code. Search terms: Español Deutsch Français Português Italiano Nederlands Greek Japanese Korean Chinese |
Supercharge your PPT Productivity with PPTools
|
content authoring & site maintenance by |
Go there, Come back
http://www.pptfaq.com/FAQ00408.htm
Last update 09 September, 2006