I would like to make it possible for an operator to select positions in an animation to use as the preview in the sequencer. I want them to be able to see what the animation will look like at different places in the timeline given their text and image selections. There are 4 different places I would like to do that.
Any help is much appreciated!
Here is my script so far:
'================================
dim sd as xpSceneDirector
dim theSELECTON as xpTextObject
dim currPV as long
self.GetSceneDirectorByName("SceneDirector1",sd)
self.GetObjectByName("PREVIEW PICTURE:",theSELECTON)
select case theSELECTON.Text
case "1"
currPV = 500
case "2"
currPV = 770
case "3"
currPV = 1040
case "4"
currPV = 1340
case else
currPV = 220
end select
'THIS IS WHERE I THINK I NEED TO SET THE PREVIEW, BASED ON THE SCENE DIRECTOR (sd) AND THE FRAME (currPV)
'MY ATTEMPTS HAVE FAILED. ANY IDEAS?
'================================
------------------------------
Kraig
------------------------------