![]() |
|
#4
|
|||
|
|||
|
You can only do that with code.
Code:
Sub showHidden()
'NOTE this is ONLY for use in show mode
'NOTE the shapes will be visible when you finish the presentation
'The second code block fixes this it will run automatically
Dim osld As Slide
Dim oshp As Shape
Set osld = SlideShowWindows(1).View.Slide
For Each oshp In osld.Shapes
If oshp.Visible = False Then
oshp.Visible = True
osld.Tags.Add "TARGET", "YES"
oshp.Tags.Add "VIS", "NO"
End If
Next oshp
End Sub
Sub OnSlideShowTerminate(SW as SlideShowWindow)
Dim osld As Slide
Dim oshp As Shape
For Each osld In ActivePresentation.Slides
If osld.Tags("TARGET") = "YES" Then
For Each oshp In osld.Shapes
If oshp.Tags("VIS") = "NO" Then oshp.Visible = False
Next oshp
End If
Next osld
End Sub
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Show images when moving
|
leoxoffice | Word | 1 | 11-22-2015 03:19 PM |
| Import Images so Properties show next to image | Drydama | Word VBA | 3 | 10-27-2015 02:01 AM |
| Hidden Fonts Still Show in Office Dropdown Font Menus | stlsailor | Word | 0 | 07-13-2013 06:59 AM |
Lyric slide show - using a variable to pull text from next slide
|
elfman12 | PowerPoint | 3 | 03-08-2013 12:27 AM |
| PP 2010 .avi file plays during slide show, but causes the slide show to loop to begin | VictorS | PowerPoint | 0 | 10-16-2010 10:23 AM |