Batch Printing multiple presentations as handouts

T

Ted

I am trying to print handout versions (B&W, 2per page) for 50+ presentations
at once. Is there a way to do these as a batch?
 
J

John Wilson

Hows your vba coding?

Steve has examples of "do something to every presentation in a folder"
http://www.pptfaq.com/FAQ00594.htm

In the do something part you would need something like this (air code not
tested)

With oPres.PrintOptions
..PrintColorType = ppPrintBlackAndWhite
..OutputType = ppPrintOutputTwoSlideHandouts
..RangeType = ppPrintAll
End With
oPres.PrintOut
--

john ATSIGN PPTAlchemy.co.uk
Custom vba coding and PPT Makeovers
Free PPT Hints, Tips and Tutorials
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html
 

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