Hello,
I've been using scripting to copy the text from one text object to another for use in conditional scene groups. So, the existence of text in a published field determines which scene group is visible. The script copies the text field to a text object in the other scene group so it doesn't have to be typed twice by the news person.
I'm using the following scripit as an example:
dim text1 as xptextobject
dim text2 as xptextobject
selfgetobjectbyname "line 1", (text1)
selfgetobjectbyname "line 2", (text2)
text2.text = text1.text
This is all working just fine. Now, however, what do I do when I want to use that same idea with an image? The news person selects an image file for a published quad object. I want whatever is in that field to be copied to another object's material. I'm not sure what to put in the script for that.
Thanks for any help!