Re : Temps d'arrêt dans une macro
Bonjour Robert
Me revoici
Je voudrais maintenant effacer les bulles
Comment faire s'il te plait.
Merci
Voici la macro (Voir efface, Intro didier..................ça bug par ici)
Sub Photo()
'Intro
Application.Wait Now + TimeValue("00:00:03")
ActiveSheet.Shapes.AddTextEffect(msoTextEffect10, "RIEN N'A BIEN CHANGE", _
"Arial Black", 20#, msoFalse, msoFalse, 252#, 190.5).Select
Selection.ShapeRange.IncrementLeft -103.5
Selection.ShapeRange.IncrementTop 105#
Application.CommandBars("WordArt").Visible = False
'Didier
Application.Wait Now + TimeValue("00:00:03")
ActiveSheet.Shapes.AddShape(msoShapeOvalCallout, 225#, 35#, 155, 40). _
Select
Selection.ShapeRange.Adjustments.Item(1) = 1.1753
Selection.ShapeRange.Adjustments.Item(2) = 1.0667
Selection.Characters.Text = "Bon,on commence par quoi les copains ?"
'Véronique
Application.Wait Now + TimeValue("00:00:03")
ActiveSheet.Shapes.AddShape(msoShapeOvalCallout, 480#, 10#, 146, 50). _
Select
Selection.Characters.Text = "Mamy blues,je voudrais bien changer la tonalité!"
'Michel
Application.Wait Now + TimeValue("00:00:03")
ActiveSheet.Shapes.AddShape(msoShapeCloudCallout, 100.5, 28.5, 115.5, 51#). _
Select
Selection.ShapeRange.Adjustments.Item(1) = 1.2119
Selection.ShapeRange.Adjustments.Item(2) = 1.2353
Selection.Characters.Text = "Allez ça recommence !!! "
Application.Wait Now + TimeValue("00:00:03")
'Efface intro,Didier,Véronique,Michel
ActiveSheet.Shapes("AutoShape 340").Select
Selection.Cut
ActiveSheet.Shapes("AutoShape 342").Select
Selection.Cut
ActiveSheet.Shapes("AutoShape 341").Select
Selection.Cut
ActiveSheet.Shapes("WordArt 339").Select
Selection.Cut
Range("A1").Select
End Sub