Private Sub Worksheet_BeforeRightClick(ByVal Target As Range, cancel As Boolean)
If Target.Column = 6 Then
nomimage = (Cells(Target.Row, 2))
Start = Timer
Do While Timer < Start + 2
ActiveSheet.Shapes.Range(Array(nomimage)).Select
Selection.ShapeRange.ScaleHeight 10, msoFalse, msoScaleFromTopLeft
Loop
MsgBox "fin timer"
Selection.ShapeRange.ScaleHeight 0.1, msoFalse, msoScaleFromTopLeft
End If
End Sub