Running Macro During Slide Show

G

Guest

I am trying to get a macro to run during a Powerpoint 2002 slide show. The
macro named "IFM1" does move in slide show mode to slide 5. The next step
that I want is for the macro to "click on" a rectangle in slide 5, which
triggers a custom animation. I recorded macro "Macro3" which moves to slide
5 and then "selects" the rectangle, but not in slide show mode. What is the
next line(s) of code to have the macro, IFM1 "mouse click" on the rectangle
on slide 5 during the show? Thanks for your help. Alan

Sub IFM1()
Application.SlideShowWindows(1).View.GotoSlide Index:=5
End Sub


Sub Macro3()
ActiveWindow.View.GotoSlide Index:=5
ActiveWindow.Selection.SlideRange.Shapes("Rectangle 33").Select
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top