Forum: Poser Python Scripting


Subject: Any idea how enable Animation Toggle option via script ?

andygraph opened this issue on Feb 10, 2014 · 55 posts


structure posted Sun, 30 March 2014 at 1:35 PM Forum Coordinator

replace

act.SetName(act.Name())+'%03d' % frame

 with

act=scene.CurrentActor()

act.SetName(myfile[:-4])
name=act.Name()+('n%03d') % frame
act.SetName(name)

and replace

if act.Name().endswith(frame):

with

if act.Name().endswith(str(frame)):

Locked Out