I guess what I'm asking, is there anyway to "embed" a logo
or watermark in each slide that cannot be removed?
You could convert all the graphics on the slide master(s) to a single bitmap
image and include your watermark in that. To remove the watermark, they'd
either have to remove the image altogether or laboriously edit it.
There are other invisible ways of marking the presentation that could be used
later to establish that the presentation's yours.
Google "Digimarc" or "Digimark" (not sure of spelling) for an invisible way of
watermarking images.
Using VBA, you can tag any slide or shape in the presentation with any
information you like.
Sub Example()
With ActivePresentation.Slides(1)
Call .Tags.Add("Copyright", "Me, 2004. Hands OFF!")
End With
End Sub
That tacks some invisible information onto Slide 1 in the current presentation.
You can also give shapes unique names. Every rectangle in the presentation
will normally have a name like "Rectangle 1" If you gave a certain rectangle
on each slide a name like "Rectangle 42" (when there are only 2 rectangles on
the page so PPT never would have created that number on its own) it'd be
another way of identifying the slide as yours. Or just name the shape
"MINE!ALL MINE!" <g>
--
Steve Rindsberg, PPT MVP
PPT FAQ:
www.pptfaq.com
PPTools:
www.pptools.com
================================================
Featured Presenter, PowerPoint Live 2004
October 10-13, San Diego, CA
www.PowerPointLive.com
================================================