Slideshowwindows troubles!

B

Bex

Hello,

I'm really stuck with this peices of code and although I know the
answer is probably v simple I'm a bit of a novice and nothing I try
seems to work!

Any help would be most appreciated!

Sub WhereNow()
SlideShowWindows(1).View.GotoSlide nextslide
End Sub

Thanks,

Bex
 
T

tohlz

Going to the next slide? Try:

Sub WhereNow()
ActivePresentation.SlideShowWindow.View.Next
End Sub

I'm not a VBA guy, so can't help you much on this topic.
--
Microsoft Most Valuable Professional (MVP PowerPoint)

Site Updated: April 13, 2006
Added new portfolio
http://pptheaven.mvps.org
PowerPoint Heaven - The Power to Animate
 
J

John Wilson

Tohlz's code is the way to go but if you want to know whats wrong with your
code it would need to be

SlideShowWindows(1).View.Next

or

SlideShowWindows(1).View.GotoSlide (3) (to go to slide 3)
 
Top