Forum Moderators: Staff
Poser Python Scripting F.A.Q (Last Updated: 2024 Dec 02 3:16 pm)
#Hide animation palette import poser import wx.aui def fnHideWin(win, indent): for child in win.Children: #print indent, child.GetName(), child.IsShown() if child.GetName()=="AnimationPalette": l.append(child) if child.IsShownOnScreen(): poser.ProcessCommand(1176) break fnHideWin(child,">") fnHideWin(poser.WxAuiManager().GetManagedWindow(),"")
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.
is it possible?
I'm asking because I always forget to close "animation palette" window just before running the scripts - and this slows down the script since each frame must be refreshed.
So I'd like to know a way of doing this via python (there is nothing in manual about it).
Thanks.