I have a farily large powerpoint file with links to other slides within the same presentation. Sometimes they work, sometimes they bring me to the wrong slide. I've seen threads about Powerpoint issues with too many links. The best solution seems to be to write some vba code and use macros for action settings instead of hyperlinking.
I'd like to be able to transition to a slide that has a title equal to the text I put into the textbox (which I give an action setting to).
I've scoped out threads from multiple forums but can't figure out how I would go about this.
I've tried various approaches including this real simple one:
Sub test()
On Error Resume Next
With SlideShowWindows(1).View
.GotoSlide (TextFrame.TextRange.Text)
End With
End Sub
Any insight much appreciated!
I'd like to be able to transition to a slide that has a title equal to the text I put into the textbox (which I give an action setting to).
I've scoped out threads from multiple forums but can't figure out how I would go about this.
I've tried various approaches including this real simple one:
Sub test()
On Error Resume Next
With SlideShowWindows(1).View
.GotoSlide (TextFrame.TextRange.Text)
End With
End Sub
Any insight much appreciated!