There is no possibility to my knowledge to make the background of the textbox transparent, but there is a workaround:
Right-click on the screen to create a text on the screen at the place you wish.
In the Frame Properties add:
- Code: Select all
Text(1).Caption = "This is my text"
For multiple lines, use this:
- Code: Select all
Text(1).Caption = "This is the first line" + VBCRLF + "This is the second line"
In case you want text appear after the player clicks a specific hotspot, and not from the beginning when the frame is loaded, then In the Frame Properties add:
- Code: Select all
Text(1).Caption=""
In the Hotspot Properties add:
- Code: Select all
Text(1).caption= "This is my text."
The text features can be also manipulated (color, font etc.), e.g.
- Code: Select all
Text(1).Forecolor=RGB(255,255,255)
To make the text disappear again, use a timed event, e.g.
- Code: Select all
Action.CreateTimedEvent 6, "Text(1).Caption = """""
Please post if anything is unclear, or if you have more questions to this.
