Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 07-15-2016, 09:40 AM
JustSayHi JustSayHi is offline How to show hidden objects/images on slide show Windows 7 32bit How to show hidden objects/images on slide show Office 2013
Novice
How to show hidden objects/images on slide show
 
Join Date: Jul 2016
Posts: 2
JustSayHi is on a distinguished road
Default How to show hidden objects/images on slide show

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?
Reply With Quote
  #2  
Old 07-15-2016, 12:41 PM
Hani Hani is offline How to show hidden objects/images on slide show Windows 10 How to show hidden objects/images on slide show Office 2013
Advanced Beginner
 
Join Date: Oct 2011
Posts: 93
Hani is on a distinguished road
Default

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).
Reply With Quote
  #3  
Old 07-15-2016, 08:27 PM
JustSayHi JustSayHi is offline How to show hidden objects/images on slide show Windows 7 32bit How to show hidden objects/images on slide show Office 2013
Novice
How to show hidden objects/images on slide show
 
Join Date: Jul 2016
Posts: 2
JustSayHi is on a distinguished road
Default

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
Reply With Quote
  #4  
Old 07-16-2016, 12:00 AM
JohnWilson JohnWilson is offline How to show hidden objects/images on slide show Windows 7 64bit How to show hidden objects/images on slide show Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,913
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

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
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to show hidden objects/images on slide show 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
How to show hidden objects/images on slide show 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

Other Forums: Access Forums

All times are GMT -7. The time now is 01:05 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft