Link to home
Start Free TrialLog in
Avatar of thenelson
thenelson

asked on

access a Powerpoint 2003 TimeLine MainSequence from VBA

Is there a way to move the TimeLine MainSequence to the next sequence from VBA and/or a way to determine where in the TimeLine MainSequence the next sequence will be?

I would like to click a control button which does several things and have the VBA code advance the TimeLine MainSequence at the end of the code.

TIA
ASKER CERTIFIED SOLUTION
Avatar of John Wilson
John Wilson
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of thenelson
thenelson

ASKER

ActivePresentation.SlideShowWindow.View.Next
works - that was easy, thanks!
This is what I really needed.

   ActivePresentation.SlideShowWindow.View.GetClickIndex
   ActivePresentation.SlideShowWindow.View.GetClickCount
aren't in Powerpoint 2003.
These would have been nice to know.

Thanks again.