Jennifer
2006-05-24 22:00:01 UTC
I was asked to figure out a way to change the background color of some shapes
in a slide show by just clicking on them.
I've got a macro to do that. I've right-clicked on the object and chose
"Action Settings" Under On Click, I picked the name of the macro to run.
Nothing happens.
Now, I am not an expert or even a casual user of Power Point. I don't
really know what I am doing. I do know Excel and use macros there all the
time, which is why I was picked on to help with this little task. :)
The macro is:
Sub ColorCircle()
With ActiveWindow.Selection.ShapeRange
.Fill.Visible = msoTrue
.Fill.ForeColor.RGB = RGB(255, 102, 0)
.Fill.Solid
End With
End Sub
I'm almost positive there is something very obvious I am missing here. Can
anyone help me with this?
Thanks!
Jennifer
in a slide show by just clicking on them.
I've got a macro to do that. I've right-clicked on the object and chose
"Action Settings" Under On Click, I picked the name of the macro to run.
Nothing happens.
Now, I am not an expert or even a casual user of Power Point. I don't
really know what I am doing. I do know Excel and use macros there all the
time, which is why I was picked on to help with this little task. :)
The macro is:
Sub ColorCircle()
With ActiveWindow.Selection.ShapeRange
.Fill.Visible = msoTrue
.Fill.ForeColor.RGB = RGB(255, 102, 0)
.Fill.Solid
End With
End Sub
I'm almost positive there is something very obvious I am missing here. Can
anyone help me with this?
Thanks!
Jennifer