I am looking for a way to tell a volatile texture to loop. We have four different lower third backgrounds and use a text field for the producers to select the format they want. Our script pulls the specified background from a folder. However, the background movie animates in, and I'd like it to them loop back to frame 60. Any suggestions on how to script that? This is what we're using right now:
dim Low3 as xpTextObject
dim base as xpBaseObject
dim FilePath as String
Self.GetObjectByName("Number of lines", Low3)
FilePath = "D:\MTN News\Video\L3" & Low3.Text & ".avi"
Self.GetObjectByName("Low3base", base)
base.SetVolatileTextureFile(0,"D:\MTN News\Video\L3" & low3.text & ".avi"
Thanks in advance for any help.