I need help. Please explain to me if i can add a load event to my slides (using VBA). Example: When i load slide 3, a macro to be executed.
Is that possible? If yes, how to do that? Thanks.
I need help. Please explain to me if i can add a load event to my slides (using VBA). Example: When i load slide 3, a macro to be executed.
Is that possible? If yes, how to do that? Thanks.
スライドショービューまたは通常の編集ビューでこれを実行しますか?
スライドショービューの場合、最も簡単な方法は、次のようなマクロをトリガーする独自のナビゲーションボタンを追加することです。
Sub NextSlide()
' go to the next slide
ActiveWindow.View.GotoSlide (SlideShowWindows(1).View.GotoSlide(SlideShowWindows(1).View.Slide.SlideIndex))
' and insert whatever code you like here:
End Sub