VBA to remove ppEffectDissolve?

G

Geoff Cox

Hello,

I have previously applied following to some action buttons

oSh.AnimationSettings.EntryEffect = ppEffectDissolve

How do I now remove this effect?

Thanks

Geoff
 
G

Geoff Cox

Hello,

I have previously applied following to some action buttons

oSh.AnimationSettings.EntryEffect = ppEffectDissolve

How do I now remove this effect?

I have tried following but it does not work? Where am I wrong?!

For Each oSh In oSl.Shapes
If oSh.Type = 1 Then
If oSh.AutoShapeType = 129 Then
If oSh.AnimationSettings.EntryEffect = _
ppEffectDissolve Then
oSh.AnimationSettings.Animate = msoFalse
End If
End If
End If
Next oSh
Next oSl

Cheers

Geoff

PS I know I ought to use the TimeLine object but would like to get
this to work first.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top