![]() |
|
|
|
#1
|
|||
|
|||
|
I have hidden image in one slide that i want to set click button to show the hidden image on present. Can any one help me?
|
|
#2
|
|||
|
|||
|
1) Add (Disappear) animation to the image, and set it to start (With Previous).
2) Add another animation to the same image (Appear) from (Add Animation), (NOT FROM ANIMATION MENU). 3) Draw a shape or insert an image... to set it as buttom, and use (Trigger) to begin the second animation (Appear). |
|
#3
|
|||
|
|||
|
Thanks for your answer
but I mean hidden image by selection pane from power point 2013 (I don't want to show the image on print out) but I want to show on present |
|
#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
|
|
|
|
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 |