Forum Moderators: nerd Forum Coordinators: nerd
Poser 12 F.A.Q (Last Updated: 2024 Oct 22 2:54 pm)
Welcome to the Poser Forums! Need help with these versions, advice on upgrading? Etc...you've arrived at the right place!
Looking for Poser Tutorials? Find those HERE
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.
The script always has a problem with hiding somewhere. A poser 11 creation "show hampelmann.pyc" was made for me by a friend, it always restores hampelmann to the top left side of the screen.
when i open it in main pane, it just goes straight to disappearing. When i oepn it in matierials pane, it shows and i can use it, but upon restarting poser, i cant view it anymore in materials pane. I can still view it in hair pane. So ican load it in hair pane and use it for that start up of Poser, but if i close it out, then i cant use it from the hair pane either. What is going on? Can anyone make me a script please to restore a python script to the top left side of the screen, for poser 12? I have the old version
import poser
APPNAME = 'Hampelmann'
DEBUG = True
manager = poser.WxAuiManager()
def FindMe(name, debug=False):
for pane in manager.GetAllPanes():
if debug and pane.caption != '': print '\t%s' % pane.caption
if pane.caption == name:
return pane
return None
if DEBUG: print 'Searching for running scripts...'
me = FindMe(APPNAME, DEBUG)
if me:
print '\nScript %s found' % APPNAME
me.FloatingPosition((0,0))
me.Float()
me.Show()
manager.Update()
else:
print '\nScript %s is not running' % APPNAME