I have the following Macro which adds a glow to a shape when clicked.
Sub IsoscelesTriangle2_Click()
'
' IsoscelesTriangle2_Click Macro
Dim Shp As Shape
Set Shp = ActiveSheet.Shapes(Application.Caller)
With Shp.Glow
.Color = RGB(0, 255, 0)
.Radius = IIf(.Radius = 0, 10, 0)
End With
End Sub
However, I would it to UNGLOW (go back to normal) when any other button is clicked
I've 3 triangles as buttons.
Thank You!
Sub IsoscelesTriangle2_Click()
'
' IsoscelesTriangle2_Click Macro
Dim Shp As Shape
Set Shp = ActiveSheet.Shapes(Application.Caller)
With Shp.Glow
.Color = RGB(0, 255, 0)
.Radius = IIf(.Radius = 0, 10, 0)
End With
End Sub
However, I would it to UNGLOW (go back to normal) when any other button is clicked
I've 3 triangles as buttons.
Thank You!