As in replacing text in a text box?
Step 1 is to make sure all the text boxes have scripting activated (right click -> enable scripting)
Step 2 is to replace the 2 stings in the code below with what you are searching for and what you want to replace it with:
Code:Sub ReplaceText()
For Each item in ThisDisplay.Symbols
If item.Type = 4 Then
item.Contents = Replace(item.contents,"String to Search For","String to add in")
End If
Next
End Sub
(Suggestions / corrections to my coding / syntax are welcome.)
Disclaimer: Any code presented by myself might be unconventional because of the lack of formal training. Any corrections are welcome. =)