0

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.

4

1 に答える 1

2

スライドショービューまたは通常の編集ビューでこれを実行しますか?

スライドショービューの場合、最も簡単な方法は、次のようなマクロをトリガーする独自のナビゲーションボタンを追加することです。

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
于 2012-09-24T18:33:03.140 に答える