Brian,
Thanks for the script. I ended up using something very similar. Here is the OnOnline part:
dim base as xptexturedobject
dim mat as xpmaterial
dim vid as xpvideoshader
self.getobjectbyname("MATERIAL",base)
if base.getmaterial(0,mat) = true
mat.SetPlayMode(3)
end if
if mat.getshader(0,vid) = true
vid.unshaped = true
end if
I added the part with the xpVideoShader at the end to clean up the alpha channel on the texture or video being applied.
This is the Scrip on the track part:
dim base as xptexturedobject
dim mat as xpmaterial
scene.getobjectbyname("MATERIAL",base)
if base.getmaterial(0,mat) = true
mat.SetPlayMode(0)
end if
michael allen,
I don't think 4.1 has scripts in the scene director, but I think there is probably a way to execute a portion of code when the scene director is played after a pause.
#XPression