Powerpoint 365 VBA
Set sld = Application.ActiveWindow.View.Slide
Set Shp = sld.Shapes(2)
If Shp.TextFrame2.HasText Then
Txt = Replace(Shp.TextFrame2.TextRange.Text, " ", "+")
But this uses ALL the text. I only want to assign a variable to the current SELECTED text.
The ultimate goal would be to check if selection length is > 1, then use the selected text, otherwise use all the text.

Application.Selection?