Forum: Poser Python Scripting


Subject: Duplicate figure

ironsoul opened this issue on Jun 02, 2017 ยท 5 posts


structure posted Fri, 02 June 2017 at 2:54 AM Forum Coordinator

try this

# -*- coding: utf-8 -*- 

import poser

scene = poser.Scene()
figure = scene.CurrentFigure()
scene.SelectFigure( scene.Figure( figure.Name() ) ) 
if figure:
    poser.ProcessCommand( 1568 )

Locked Out