Hi all,
I have the following script on my Lower 3rd text to bring on a quad when text is typed into the text box
dim bar as xpBaseObject
scene.GetObjectByName("BASELINE_D", Bar)
if Len(text) > 0 then
Bar.visible = True
else
Bar.visible = False
end if
Now I want to change the Y position value relative to text input in another text layer.
If the text layer has content, I want the text box to move up to make room. If there is no text, I want it to stay where it is.
How do I incorporate this into the current script? I am not sure on syntax, and I am having issues getting my head around how to interpret the Help documentation.
Any help or advice would be appreciated!