Supercharge your PowerPoint productivity with
Supercharge your PPT Productivity with PPTools - Click here to learn more.

Proud member of

PPTools

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.

Eliminate the screentip that appears over hyperlinks

Problem

When you hover the mouse over a hyperlink, PowerPoint displays a little yellow box with some text in it. You can change this to any text you like by editing the hyperlink and changing the ScreenTip text, but you can't eliminate the screentip entirely.

Solution

This little macro will remove the text from all of the screentips in all of the hyperlinks on each slide in your presentation. It doesn't touch hyperlinks on masters, templates, layouts, etc. It replaces the text with nothing, which produces a small dot rather than the usual square yellow blank screentip. It doesnt eliminate the screentip entirely but does make it as unintrusive as possible.

 
Sub BlankTheScreentips()
    Dim osl As Slide
    Dim ohl As Hyperlink

    For Each osl In ActivePresentation.Slides
        For Each ohl In osl.Hyperlinks
            ' This sets the screentip to a space
            'ohl.ScreenTip = " "
            ' This sets the screentip to null, even less intrusive than a space
            ohl.ScreenTip = ""
        Next
    Next
End Sub

See How do I use VBA code in PowerPoint? to learn how to use this example code.


Did this solve your problem? If so, please consider supporting the PPT FAQ with a small PayPal donation.
Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2022 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Supercharge your PPT Productivity with PPTools

content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

Eliminate the screentip that appears over hyperlinks
http://www.pptfaq.com/FAQ01143_Eliminate_the_screentip_that_appears_over_hyperlinks.htm
Last update 07 December, 2011
Created: 07 December, 2011