# export figure, import as prop, load morphs import poser, os, string scn = poser.Scene() fig = scn.CurrentFigure() # get the figure reqacts = ["BODY","Head","rEye","lEye"] for a in reqacts: act = fig.Actor(a) if act: parms = act.Parameters() # if bodypart get parameters for parm in parms: if (parm.IsMorphTarget() or parm.IsValueParm()) and not (parm.Name().startswith("EMPTY") or parm.Name().startswith("-")) : # filter morphs print act.Name(), "\t", parm.Name() rint "export complete"