Forum: Poser 12


Subject: Panels docked or floating options:

Faery_Light opened this issue on Dec 08, 2020 ยท 12 posts


adp001 posted Wed, 09 December 2020 at 12:41 AM

Quick fix:

Save this into a file ("dontdrag.py" or whatever you like). From Poser Menu use "File -> Run Python Script" and point to the file you saved.

from __future__ import print_function

for p in poser.WxAuiManager().GetAllPanes():
    p.Movable(False).Dockable(True).Dock().Floatable(False)

print("Done.")