For Each sh In ActiveSheet.Shapes
With sh
Select Case .Name
Case "Sheet1": .OnAction = "Macro1"
Case "Sheet2": .OnAction = "Macro2"
End Select
With .ShapeRange
.LockAspectRatio = msoTrue
.Height = .Height * 1.5
End With
End With
Next