View Single Post
 
Old 03-19-2015, 04:33 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,913
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

Do you mean auto load a webpage??

Insert a module (ALT f11, Insert Module) and add this code:

Code:
Sub OnSlideShowPageChange(SW As SlideShowWindow)
If SW.View.CurrentShowPosition = 1 Then 'or whatever slide number
'change target and maybe name of object
SW.View.Slide.Shapes("WebBrowser1").OLEFormat.Object.Navigate ("http://www.pptalchemy.co.uk")
End If
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote