"BillPage@msn.com" <BillPage RemoveThis @msn.com@discussions.microsoft.com> wrote in
message news:5948546B-6F4F-4C83-A6A4-BB9DCF98EC63@microsoft.com...
> How can I print a PowerPoint presentation (2003 or 2007) to not show the
> audio icons for imbedded sound files?
(Msg. 3) Posted: Wed Sep 03, 2008 4:38 pm
Post subject: Re: don't print sound icons [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
Thanks. That helps for one slide, but I have a presentation with dozens of
slides with sound icons. Is there a way I can print the presentation without
those icons appearing, or do I first have to modify each slide individually?
Alternatively, is there a way (in PowerPoint 2003 and/or 2007) to create a
macro to locate and do the modifications for me?
"Echo S" wrote:
> Drag the audio icons off the edge of the slide.
>
> --
> Echo [MS PPT MVP] http://www.echosvoice.com > What's new in PPT 2007? http://www.echosvoice.com/2007.htm > Fixing PowerPoint Annoyances http://tinyurl.com/36grcd > PowerPoint 2007 Complete Makeover Kit http://tinyurl.com/32a7nx >
>
> "BillPage@msn.com" <BillPage.DeleteThis@msn.com@discussions.microsoft.com> wrote in
> message news:5948546B-6F4F-4C83-A6A4-BB9DCF98EC63@microsoft.com...
> > How can I print a PowerPoint presentation (2003 or 2007) to not show the
> > audio icons for imbedded sound files?
>
>
(Msg. 4) Posted: Wed Sep 03, 2008 8:29 pm
Post subject: Re: don't print sound icons [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
One of the coders will have to answer the macro part -- I don't know the
answer to that.
In 2007, there's a Selection and Visibility task pane you could use to hide
the sound icons. You'd have to do each slide individually, but it might be
faster than dragging the icon off the slide. I'm not sure what happens if
you open that file in 2003, though -- you'd need to check whether the hidden
object stays hidden. I think it does, but I'm not positive.
Selection and Visiblity pane is on Home tab, Editing chunk, click the arrow
next to Select and choose Selection Pane.
"BillPage@msn.com" <BillPagemsncom RemoveThis @discussions.microsoft.com> wrote in
message news:B6C9A07E-CFCF-4F06-9C67-C065EB8EC2FC@microsoft.com...
> Thanks. That helps for one slide, but I have a presentation with dozens of
> slides with sound icons. Is there a way I can print the presentation
> without
> those icons appearing, or do I first have to modify each slide
> individually?
> Alternatively, is there a way (in PowerPoint 2003 and/or 2007) to create a
> macro to locate and do the modifications for me?
>
> "Echo S" wrote:
>
>> Drag the audio icons off the edge of the slide.
>>
>> --
>> Echo [MS PPT MVP] http://www.echosvoice.com >> What's new in PPT 2007? http://www.echosvoice.com/2007.htm >> Fixing PowerPoint Annoyances http://tinyurl.com/36grcd >> PowerPoint 2007 Complete Makeover Kit http://tinyurl.com/32a7nx >>
>>
>> "BillPage@msn.com" <BillPage RemoveThis @msn.com@discussions.microsoft.com> wrote in
>> message news:5948546B-6F4F-4C83-A6A4-BB9DCF98EC63@microsoft.com...
>> > How can I print a PowerPoint presentation (2003 or 2007) to not show
>> > the
>> > audio icons for imbedded sound files?
>>
>>
(Msg. 5) Posted: Wed Sep 03, 2008 10:07 pm
Post subject: Re: don't print sound icons [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
In article <B6C9A07E-CFCF-4F06-9C67-C065EB8EC2FC.DeleteThis@microsoft.com>,
BillPage.DeleteThis@msn.com wrote:
> Thanks. That helps for one slide, but I have a presentation with dozens of
> slides with sound icons. Is there a way I can print the presentation without
> those icons appearing, or do I first have to modify each slide individually?
> Alternatively, is there a way (in PowerPoint 2003 and/or 2007) to create a
> macro to locate and do the modifications for me?
It'd probably take me longer to write a macro to do it than it'd take you to do
it manually. And you'd have to wait for me to find the time to do it.
This is a quick 'n dirty one that might work though ... it'll hide all media
objects (movies, sounds):
Sub HideEm()
Dim oSl As Slide
Dim oSh As Shape
For Each oSl In ActivePresentation.Slides
For Each oSh In oSl.Shapes
If oSh.Type = msoMedia Then
' change this to True
' to reverse the process
oSh.Visible = False
End If
Next
Next
End Sub
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Live and in personable in the Help Center at PowerPoint Live
Sept 21-24, San Diego CA, USA
www.pptlive.com
(Msg. 6) Posted: Thu Sep 04, 2008 7:44 am
Post subject: Re: don't print sound icons [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
Steve, that macro works beautifully -- quick, simple, and reversible. Thank
you!
"Steve Rindsberg" wrote:
> In article <B6C9A07E-CFCF-4F06-9C67-C065EB8EC2FC.DeleteThis@microsoft.com>,
> BillPage.DeleteThis@msn.com wrote:
> > Thanks. That helps for one slide, but I have a presentation with dozens of
> > slides with sound icons. Is there a way I can print the presentation without
> > those icons appearing, or do I first have to modify each slide individually?
> > Alternatively, is there a way (in PowerPoint 2003 and/or 2007) to create a
> > macro to locate and do the modifications for me?
>
> It'd probably take me longer to write a macro to do it than it'd take you to do
> it manually. And you'd have to wait for me to find the time to do it. >
> This is a quick 'n dirty one that might work though ... it'll hide all media
> objects (movies, sounds):
>
> Sub HideEm()
>
> Dim oSl As Slide
> Dim oSh As Shape
>
> For Each oSl In ActivePresentation.Slides
> For Each oSh In oSl.Shapes
> If oSh.Type = msoMedia Then
> ' change this to True
> ' to reverse the process
> oSh.Visible = False
> End If
> Next
> Next
>
> End Sub
>
>
> -----------------------------------------
> Steve Rindsberg, PPT MVP
> PPT FAQ: www.pptfaq.com > PPTools: www.pptools.com > ================================================
> Live and in personable in the Help Center at PowerPoint Live
> Sept 21-24, San Diego CA, USA
> www.pptlive.com >
>
All times are: Eastern Time (US & Canada) (change)
Page 1 of 1
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum