Hi,
I have a scene with AnimControler1 that has duration 200
engine.loadproject "c:project_before.xpf"
engine.GetSceneByName "Scene1", myScene
myScene.GetAnimControllerByName "AnimController1", AnimCont1
'Im try to change the duration of animation controler
AnimCont1.Duration = 125
'Then save the project (different name)
Engine.Saveproject "c:project_after.xpf"
'but the duration has the old value 200
How can I change the duration ?
Thanks in advance