tooltip

  • Thread starter Thread starter MPR
  • Start date Start date
M

MPR

Hi,

I would like to add tooltiptext in PowerPoint objects using VBA, I did not find a "tooltiptext" property in PowerPoint objects, so how could I do this?
I Use PowerPoint 2003.

Thanks in advance,
Cesar
 
Hi,

I would like to add tooltiptext in PowerPoint objects using VBA,
I did not find a "tooltiptext" property in PowerPoint objects, so how could
I do this?
I Use PowerPoint 2003.

The macro recorder is often a good place to start when you're trying to figure
out how to do things in PPT. True in this case; record a macro while you add
a hyperlink and set the screen tip text.

Basically what you want is (assuming a reference to the shape in oSh):

With oSh.ActionSettings(ppMouseClick).Hyperlink
.ScreenTip = "Your screen tip text here"
End With
 
Thanks Steve!
"Steve Rindsberg" <[email protected]> escreveu na mensagem
Hi,

I would like to add tooltiptext in PowerPoint objects using VBA,
I did not find a "tooltiptext" property in PowerPoint objects, so how could
I do this?
I Use PowerPoint 2003.

The macro recorder is often a good place to start when you're trying to figure
out how to do things in PPT. True in this case; record a macro while you add
a hyperlink and set the screen tip text.

Basically what you want is (assuming a reference to the shape in oSh):

With oSh.ActionSettings(ppMouseClick).Hyperlink
.ScreenTip = "Your screen tip text here"
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top