I have a slide object with a text inside it and I want to change the text in it using a script. Just like for a TextDisplay you use Stimulus.Text in the script, how do we do that if it was a slide object?
I also have another question. Is there any way I can make the strip of background behind a text in a TextDisplay object a different color than the whole background or is that only possible using a slide?
Thanks,
Maha
Set theSlideText = CSlideText(Stimulus.States(Stimulus.ActiveState).Objects("Text1"))
theSlideText.Text = "Hello World"
theSlideText.ForeColor = CColor("red")
theSlideText.Draw
See SlideText in E-Basic Help
Oh, replace Text1 and Stimulus with the name of your objects.
-Brandon