View Single Post
 
Old 03-23-2013, 01:43 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,914
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

Would be good to see the file but if there are only 2 simple animations try:
Sub reversi()
Dim osld As Slide
For Each osld In ActivePresentation.Slides
If osld.TimeLine.MainSequence.Count = 2 Then ' 2 animations
osld.TimeLine.MainSequence(2).MoveTo 1
End If
Next osld
End Sub
BTW We have a proper flash card creation AddIn (not free but cheap)

http://www.pptalchemy.co.uk/flashcards.html
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials

Last edited by JohnWilson; 03-23-2013 at 04:50 AM.
Reply With Quote