How do I call a macro in Word from Powerpoint VBA?

S

Schindc

I want to run a set of commands in on a Microsoft Word document from
powerpoint. The reason I need to do this is I want a macro to copy the
contents of certain slides, and then paste them into Word as enhanced
metafiles so I can resize and store them there as thumbnails.

I'm able to switch application using "AppActivate "Microsoft Word"" but once
there, I can't seem to paste. I thought that if I had a macro in Word that
did everything I needed to do, I could call that macro.
 
B

Bob I

Perhaps the SendKeys?

SendKeys Statement
Sends one or more keystrokes to the active window as if typed at the
keyboard.
 
Top