P
Patrick
Hello there -- I am wondering if it is possible to temporarily change the
color of a shape on a slide. Let me explain:
I have 4 shapes on a slide. When the presentation is displayed in slideshow
view, the presenter will click one of the shapes - we do not know which - and
that shape should change color (same color for all, regardless of which is
clicked). Looking through the forums, I found some code that does this...
Sub colorShape(oSh As Shape)
With oSh
.Fill.Visible = msoTrue
.Fill.ForeColor.RGB = RGB(255, 153, 51)
.Fill.Solid
End With
End Sub
Works fine, as it turns out. Problem is I do not want the shape to have this
new color when slideshow is exited. So looking for a way to change the color
in slideshow, but when we return to slide view, have the color back to its
original. Is this possible?
Thanks in advance!
color of a shape on a slide. Let me explain:
I have 4 shapes on a slide. When the presentation is displayed in slideshow
view, the presenter will click one of the shapes - we do not know which - and
that shape should change color (same color for all, regardless of which is
clicked). Looking through the forums, I found some code that does this...
Sub colorShape(oSh As Shape)
With oSh
.Fill.Visible = msoTrue
.Fill.ForeColor.RGB = RGB(255, 153, 51)
.Fill.Solid
End With
End Sub
Works fine, as it turns out. Problem is I do not want the shape to have this
new color when slideshow is exited. So looking for a way to change the color
in slideshow, but when we return to slide view, have the color back to its
original. Is this possible?
Thanks in advance!