Forum: Poser Python Scripting


Subject: I need a shortcut key script example

Uncanny_Film opened this issue on Feb 10, 2022 ยท 10 posts


FVerbaas posted Mon, 14 February 2022 at 4:26 PM Forum Coordinator

for a script to call think of something like:



sc = poser.Scene()
try:
    fig = sc.CurrentFigure()
    try:
        act = fig.ActorByInternalName('rHand')
        sc.SelectActor(act)
    except:
        pass
except:
    pass


Sure it could be condensed further but with this layout I hope the proces is more clear.