Hello Ross Community! My company just picked up an Xpression to work with our Ross vision 1 Switcher. The way we use Xpression is in this way; a producer brings in 10-15 stills a day for a morning news talk show. We have 50 stills templates created in our sequencer all referencing a pic 101, 102, 103, etc up to 50. We want to be able to paste our days 10-15 stills in the root images folder and have them auto populate in Xpression. We talked with a Ross rep who indicated it is not natively possible to realtime populate those images because X doesnt work by constantly pinging the root folder. He came up with a script to help us do it which I have attached below, but for some reason, the pics show up in X, except 101 and 103 and if I change them back to our "default" images, or placeholders, it will not auto-populate back. Can anyone take a look at this script and see anything wrong. Scripting is not my strong-suit so I barely know what Im looking at down there.
Any help is greatly appreciated!
Thanks all!
Tim Jacobs
(Numbers are line numbers only)
1 dim name as xpTextObject
2 dim pic as xpBaseObject
3 dim candidatepic as xpMaterial
4 dim picshader as xpBaseShader
5 dim FilePath as String
6
7 Self.GetObjectByName("name", name)
8 FilePath = Engine.ProjectPath & "ImagesShowDayPics" & name.Text & ".tif"
9 Self.GetObjectByName("pic", pic)
10 pic.GetMaterial(0, candidatepic)
11 candidatepic.GetShader(0, picshader)
12 picshader.SetFileName(FilePath)