# show current figure and all conformers and props # markschum Feb 3 2011 # import poser scn = poser.Scene() myfig = scn.CurrentFigure() myfig.SetVisible(1) figs = scn.Figures() acts = scn.Actors() # find conformers for fig in figs: ct = fig.ConformTarget() if ct and (ct.Name() == myfig.Name()): fig.SetVisible(1) for act in acts: p = act.Parent() if p: if p.ItsFigure() == myfig: try: act.SetOnOff(1) except: pass scn.DrawAll() print "Done"