I am creating sequence or steps with Adobe Toolkit, each step have its own sequence.
I follow up the Adobe tutorial (Controlling Animation) and add the corresponding JS and work fine, but it only play the first sequence.
( http://www.adobe.com/devnet/acrobat3d/pdfs/controlling_animations.pdf )
I really need to find a way to show the steps (multiple sequences) on a list and its coresponding description (using metadata from the toolkit). Something similar to .
(http://www.righthemisphere.com/company/links/solutions/Adobe/Piston_Rod_Assembly_Steps_Metadata_v1.1.pdf)
Does anybody can help me out?
function Context()
{
return getAnnots3D(0)[0].context3D;
}
function PlayRange (start, stop)
{
Context().MyAnimation.setPlayRange(start, stop);
Context().MyAnimation.reset();
Context().MyAnimation.play();
}
You can add the routine above to the Document level javascripts defined in the AnimationController.pdf document you reference above.
Jim Merry, VP 3D PDF, Tetra 4D, jim [dot] merry [at] tetra4d [dot] com