|
|
How do I get multiple text objects to transition simultaneously? It sounds like you have the Deko objects set for Automatic Update and "auto" Transition Triggering, the default settings. When you make a change to the text override parameter, the object immediately starts rendering the new text. The rendering isn't instantaneous - it make take a couple frames or so. When the rendering is complete, the on-screen graphic automatically begins its transition to the newly rendered bitmap. The trouble is, deko objects are rendered one at a time. Even though you change the text override value simultaneously, the three objects are rendered sequentially. Since Transition Triggering is set to "auto", each object begins its transition as soon as its rendering is finished, and you see them transition sequentially. To fix this, you have to manually trigger the transition of all three objects simultaneously. Set the Transition Triggering chooser to "manual" for each of the three objects. Next you have to figure out when to do the triggering. Unfortunately, there is no easy way to tell DekoCast to trigger the transitions of a set of Deko objects when they have all finished rendering. There are two likely approaches you might use:
If you're a RocketEngine API programmer, you can monitor the render count parameter of the last Deko object to have its text override set. When this value drops to 0, it means all the rendering has finished and it's safe to transition all the Deko objects. It doesn't matter if you set the text override values at the same time, but it's very important to set the start transition parameters simultaneously. Set the Mode property of your RocketEngine.Application object to rxmQueued before setting the start transition parameter values to 1, then set the Mode to rxmImmediate to set all the values atomically. last modified 8/27/2005 back to top send comments © 2005-2007 Serious Intent. The content of these pages is the opinion of the individual contributors. No guarantee is made as to the accuracy or completeness of the information contained here. This site is not affiliated with or endorsed by Pinnacle Systems or Avid Technology. Have a nice day! |