Set custom width for Powerpoint screen tip

Joined
Sep 25, 2011
Messages
1
Reaction score
0
Hello,

I'm trying to include some multi-paragraph screen tips in a Powerpoint presentation.

I don't know how to write VBA script, but fortunately, I found this script which allows multi-paragraph screen tips separated by empty lines (carriage returns). Fabulous!

ActiveWindow.Selection.ShapeRange(1).ActionSettings(ppMouseClick).Hyperlink.ScreenTip = "Para 1" + vbcrlf + " " + vbcrlf + "Para 2" + vbcrlf + " " + vbcrlf + "Para 3"

However, I'd also like to set a custom width for each of these screen tips. With multi-paragraph content, I'd like to configure them quite a bit wider than the Powerpoint default for screen tips. Can someone suggest a line of VB script to set a custom width for a screen tip?

Cheers!

Jay
 
Back
Top