after creating a presentation & burning on cd how do my customers.

D

Dan

I'm using PPT 2003, but this should still work. I
essentially add a button with a macro that prints the
current slide. I'm not sure this will work with just the
viewer, so you may have to test it out.

Another problem is that the button to be added would
appear on the printout, which you may not want. I'm
waiting for a response to my question posted below that
possibly will answer that dilemma.

However, here's what I have done:

Create an action button labeled "Print this page" on the
Master Slide. Then add this macro and link the button to
the macro.

Sub PrintSlide()
'
' Button macro to print current slide
'
With ActivePresentation.PrintOptions
.RangeType = ppPrintCurrent
End With
ActivePresentation.PrintOut
End Sub

This should let anyone viewing the presentation to print
the current slide. Give it a shot!
 
D

Dan

Whoops! Sorry about that.

[Any thoughts on how to hide an object from printing? Is
that possible?]
 
D

David M. Marcovitz

Unfortunately, the Viewer doesn't run macros. You need the full version
of PowerPoint for that. By the way, I posted an answer to your "hide the
button" query at the other thread. I hope it works for you.
--David

--
David M. Marcovitz, Ph.D.
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/
 
S

Sonia

I think that Dave has offered a suggestion.

Dan said:
Whoops! Sorry about that.

[Any thoughts on how to hide an object from printing? Is
that possible?]

-----Original Message-----
Macros are not supported by the Viewer.
--

Sonia Coleman
Microsoft PowerPoint MVP Team
Autorun Software, Templates and Tutorials




.
 

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