Sub Ex_B()
Dim X, Z,y
With ActiveSheet.DrawingObjects("Bouton")
x = Array("OK", " PAS OK", "peut être", "je sais pas", "pas du tout", "OK")
Z = Array(vbBlue, vbRed, vbMagenta, vbYellow, vbCyan, vbBlue)
y = Application.Match(.Characters.Text, x, 0)
.Characters.Text = x(y)
.Interior.Color = Z(y)
End With
End Sub