Next problem.
Everything works, however when I switch teams to pull different images it will not refresh in sequencer. Is there anyway to force a refresh so often? This is the script that I have at ononline, before online and on PreviewRender.
dim name1 as xpTextObject
dim pic1 as xpBaseObject
dim FilePath1 as String
'Goals Leader 1'
Self.GetObjectByName("name1", name1)
FilePath1 = name1.text
Self.GetObjectByName("GoalsPic1", pic1)
pic1.SetVolatileTextureFile(0,FilePath1)
dim name2 as xpTextObject
dim pic2 as xpBaseObject
dim FilePath2 as String
'Goals Leader 2'
Self.GetObjectByName("name2", name2)
FilePath2 = name2.text
Self.GetObjectByName("GoalsPic2", pic2)
pic2.SetVolatileTextureFile(0,FilePath2)"‹"‹
dim name3 as xpTextObject
dim pic3 as xpBaseObject
dim FilePath3 as String
'Goals Leader 3'
Self.GetObjectByName("name3", name3)
FilePath3 = name3.text
Self.GetObjectByName("GoalsPic3", pic3)
pic3.SetVolatileTextureFile(0,FilePath3)"‹"‹
If I go into layout and put it online it switches. Kind of an annoying.
#XPression