Using VBA, I need to go to a particular slide and run the first animation which is set to run "On click."
Below is the code I've got so far. It runs the PowerPoint show and goes to slide 5, but SendKeys "{DOWN}" doesn't run the first animation.
Any suggestions?

Sub LoadSlideAndRunAnimation()
  Application.Activate
  ActiveWindow.Panes(1).Activate
  Windows(1).View.GoToSlide 5
  ActivePresentation.SlideShowSettings.Run
  SlideShowWindows(1).View.GoToSlide 5
  SlideShowWindows(1).Activate
  SendKeys "{DOWN}"
End Sub
I'm working with PowerPoint 2010 on Windows 10.