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
 
G

Guest

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
 
G

Guest

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)
 

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