slideshow

G

Glenn

Is there a macro that I can write into my program that will allow me to click
on a clipart object to start a powerpoint 03 slideshow. I know how to assign
the macro to the clipart object. But I have no clue as if this is
possible. I am a novice so please do not get to complicated....thanks GLENN
 
J

Jim Thomlinson

Something like this should be close...

Sub StartShow()
Dim ppt As Object
Dim ppp As Object

Set ppt = CreateObject("PowerPoint.Application")
ppt.Visible = msoTrue
Set ppp = ppt.Presentations.Open("C:\MyShow.ppt")
ppp.SlideShowSettings.Run
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

Similar Threads

INSERT PICTURE IN MACRO 1
ClipArt to macro 1
Eyedropper Macro? 0
Clipart in Marco 1
How to open a linked graphic? 4
PowerPoint Slideshow Won't Play 4
Powerpoint Macro doesnt work on Slideshow 0
WMA file stopped playing after first run 2

Top