|  | don't print sound icons |  | |
| | | BillPage@msn.com |  |
| Posted: Wed Sep 03, 2008 6:27 pm Post subject: don't print sound icons |  |
How can I print a PowerPoint presentation (2003 or 2007) to not show the audio icons for imbedded sound files? |
| |
| | | Echo S |  |
| Posted: Wed Sep 03, 2008 6:38 pm Post subject: Re: don't print sound icons |  |
Drag the audio icons off the edge of the slide.
-- Echo [MS PPT MVP] LINK What's new in PPT 2007? LINK Fixing PowerPoint Annoyances LINK PowerPoint 2007 Complete Makeover Kit LINK
"BillPage@msn.com" <BillPage@msn.com@discussions.microsoft.com> wrote in message news:5948546B-6F4F-4C83-A6A4-BB9DCF98EC63@microsoft.com...
| Quote: | How can I print a PowerPoint presentation (2003 or 2007) to not show the audio icons for imbedded sound files? |
|
| |
| | | BillPage@msn.com |  |
| Posted: Wed Sep 03, 2008 9:01 pm Post subject: Re: don't print sound icons |  |
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:
| Quote: | Drag the audio icons off the edge of the slide.
-- Echo [MS PPT MVP] LINK What's new in PPT 2007? LINK Fixing PowerPoint Annoyances LINK PowerPoint 2007 Complete Makeover Kit LINK
"BillPage@msn.com" <BillPage@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?
|
|
| |
| | | Echo S |  |
| Posted: Wed Sep 03, 2008 10:29 pm Post subject: Re: don't print sound icons |  |
| |  | |
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.
-- Echo [MS PPT MVP] LINK What's new in PPT 2007? LINK Fixing PowerPoint Annoyances LINK PowerPoint 2007 Complete Makeover Kit LINK
"BillPage@msn.com" <BillPagemsncom@discussions.microsoft.com> wrote in message news:B6C9A07E-CFCF-4F06-9C67-C065EB8EC2FC@microsoft.com...
| Quote: | 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] LINK What's new in PPT 2007? LINK Fixing PowerPoint Annoyances LINK PowerPoint 2007 Complete Makeover Kit LINK
"BillPage@msn.com" <BillPage@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?
|
|
| |
| | | Steve Rindsberg |  |
| Posted: Thu Sep 04, 2008 2:07 am Post subject: Re: don't print sound icons |  |
| |  | |
In article <B6C9A07E-CFCF-4F06-9C67-C065EB8EC2FC@microsoft.com>, BillPage@msn.com wrote:
| Quote: | 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: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK |
| |
| | | BillPage@msn.com |  |
| Posted: Thu Sep 04, 2008 12:44 pm Post subject: Re: don't print sound icons |  |
| |  | |
Steve, that macro works beautifully -- quick, simple, and reversible. Thank you!
"Steve Rindsberg" wrote:
| Quote: | In article <B6C9A07E-CFCF-4F06-9C67-C065EB8EC2FC@microsoft.com>, BillPage@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: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK
|
|
| |
|
|