View Single Post
 
Old 08-14-2023, 08:48 AM
JohnWilson JohnWilson is offline Windows 10 Office 2019
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,914
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

You cannot select anything in Presentation Mode

Try this code and give the SHAPE with the text an action of run Macro then click on the shape in show mode.

Code:
Sub trans_text(oshp As Shape)
Dim otxr2 As TextRange2
Dim L As Long
If oshp.HasTextFrame Then
Set otxr2 = oshp.TextFrame2.TextRange
For L = 1 To otxr2.Characters.Count
otxr2.Characters(L).Font.Fill.Transparency = Rnd * 1
Next L
End If
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote