hello
I've got a problem with exporting animation of multiple frames using solutiontime.
I installed the addon proposed there : http://www.tecplottalk.com/viewtopic.php?t=22 by scottf and it's very convenient for an usage in the tecplot interface (TEC360v2006).
But when I try to export my animations of these synchronized frames with the dialog box of the interface, it only exports an animation of the first frame.
So I tried to run a macro as I did before apparition of the solutiontime approach.
#!MC 1000
$!VARSET |ZONE| = 1
$!FRAMECONTROL PUSHTOP
$!ACTIVEFIELDZONES = [|ZONE|]
$!FRAMECONTROL PUSHTOP
$!ACTIVEFIELDZONES = [|ZONE|]
$!REDRAWALL
$!EXPORTSETUP EXPORTFORMAT = AVI
$!EXPORTSETUP IMAGEWIDTH = 400
$!EXPORTSETUP EXPORTFNAME = 'E:\animation.avi'
$!EXPORTSTART
EXPORTREGION = ALLFRAMES
$!VARSET |NSLI| = 401
$!LOOP |NSLI|
$!VARSET |ZONE| += 1
$!FRAMECONTROL PUSHTOP
$!ACTIVEFIELDZONES = [|ZONE|]
$!FRAMECONTROL PUSHTOP
$!ACTIVEFIELDZONES = [|ZONE|]
$!REDRAWALL
$!EXPORTNEXTFRAME
$!ENDLOOP
$!EXPORTFINISH
but now I don't by what I can replace $!ACTIVEFIELDZONES to activate sequentially each time step in all frames...
Is it possible to have this equivalent feature?
thanks