Image Export converts PowerPoint slides to high-quality images.
PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
Resize your presentations quickly and without distortion
Language Selector switches the text in your presentation from one language to another
FixLinks prevents broken links when you distribute PowerPoint presentations
Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.
Delete all hyperlinks in a slide presentation
Problem
You want to remove all of the hyperlinks in your presentation without having to manually locate and delete them one at a time.
Solution
This little macro will delete all of the hyperlinks in your presentation:
Sub DeleteLinks()
Dim oSl As Slide
Dim x As Long
For Each oSl In ActivePresentation.Slides
For x = oSl.Hyperlinks.Count To 1 Step -1
oSl.Hyperlinks(x).Delete
Next
Next
End Sub
Delete all hyperlinks in a slide presentation
http://www.pptfaq.com/FAQ00944_Delete_all_hyperlinks_in_a_slide_presentation.htm
Last update 07 June, 2011
Created: