Forum: Poser Python Scripting


Subject: Can't find in this forum and surprised

grichter opened this issue on Feb 07, 2011 · 4 posts


markschum posted Mon, 07 February 2011 at 10:12 AM

You can write a little script to get the internal value from the dial. No conversion needed, just run the script and red the number .

I have my units in feet and the conversion factor is 8.6- 1 poser unit = 8.6 feet = 102 inches.

 

act = poser.Scene().CurrentActor()

print  act.ParameterByCode(poser.kParmCodeXTRAN).Value()

 

like that