A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
Changed:
team1Score = CInt(sld.Shapes("Team1Score").TextFrame.TextRange.Text)
This, and it now works
team1Score = CInt(ActivePresentation.Slides(currentSlideIndex).Shapes("Team1Score").TextFrame.TextRange.Text)
Even though the following should have worked, but it didn't.
Set sld = ActivePresentation.Slides(currentSlideIndex)
team1Score = CInt(sld.Shapes("Team1Score").TextFrame.TextRange.Text)