Forum Moderators: Staff
Poser Python Scripting F.A.Q (Last Updated: 2024 Sep 18 2:50 am)
using a UI Builder such as wxglade or wxformbuilder you can guild your UI on a dockable panel,
then using something like
man = poser.WxAuiManager()
root = man.GetManagedWindow()
ui = UI(root)
man.AddPane(ui, wx.aui.AuiPaneInfo().Caption('%s v%s' % (APPNAME, VERSION)).CaptionVisible().Float().Resizable().DestroyOnClose().Dockable(True).CloseButton(True))
you can make it dock in poser
Locked Out
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
Hi,
I'm interested in coding some Python additions to Poser. I haven't done much coding in Python but the example scripts and API manual are fairly helpful. But something I can't seem to find (and may be it's obvious) is guidance on how to brand your UI elements to look like they belong in Poser. I see that Poser has PSD files that seem to contain graphics for different parts of its UI. Does anyone use this same process to make their Python interface look like Poser? Or is there a better way?
Also, is there a way to create new Poser Rooms using Python? Or at the very least extensions that dock to the UI.
Thanks.
James