custom animations

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am creating a slide show with 200 + identically sized images. Is there any
way to do custom animations to a master slide and then have it apply to all
even if they have different images? This would save many hours worth of work.
 
Hey Think,

The version of PowerPoint you are using is critical in this type of
question/answer.
Please post back with your PowerPoint version.

--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
yahoo2@ Please read the PowerPoint
yahoo. FAQ pages. They answer most
com of our questions.
www.pptfaq.com
..
..
 
I am using PPT 2002/XP.
Welda

Bill Dilworth said:
Hey Think,

The version of PowerPoint you are using is critical in this type of
question/answer.
Please post back with your PowerPoint version.

--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
yahoo2@ Please read the PowerPoint
yahoo. FAQ pages. They answer most
com of our questions.
www.pptfaq.com
..
..
 
Try this Macro:

=====Begin Code=====
Sub MacroMakeOver()
Dim oSld As Slide
Dim oShp As Shape
For Each oSld In ActivePresentation.Slides
'Add a transition for each slide
With oSld.SlideShowTransition
.EntryEffect = ppEffectBoxOut
.Speed = ppTransitionSpeedMedium
End With
'Add an animation to each picture
For Each oShp In oSld.Shapes
With oSld.TimeLine.MainSequence. _
AddEffect(Shape:=oShp, _
EffectId:=msoAnimEffectEaseIn)
.Timing.Speed = 0.2
.Timing.TriggerType = _
msoAnimTriggerAfterPrevious
End With
Next oShp
Next oSld
End Sub
=====End Code=====

Of course you may want to change the animation or transition speeds or
types.

*How do I use VBA code in PowerPoint?
http://www.rdpslides.com/pptfaq/FAQ00033.htm

--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
yahoo2@ Please read the PowerPoint
yahoo. FAQ pages. They answer most
com of our questions.
www.pptfaq.com
..
..
 
In addition to Bill's macro, you might be able to make use of the animation
schemes in PPT 2002/2003. There's a quick tutorial on animation schemes at
http://office.microsoft.com/training/training.aspx?AssetID=RC060786731033

--
Echo [MS PPT MVP]
http://www.echosvoice.com


weldawadyathink said:
I am creating a slide show with 200 + identically sized images. Is there any
way to do custom animations to a master slide and then have it apply to all
even if they have different images? This would save many hours worth of
work.
 
Back
Top