Terry Mitchell opened this issue on Sep 08, 2002 ยท 5 posts
ockham posted Sun, 08 September 2002 at 8:55 PM
Find the script MainButtons.py which should be in Runtime:Python:PoserScripts, and edit your buttons into it. Note that the script uses Mac-style folder:file notation instead of PC-style folderfile. As long as your scripts are within the Poser directory somewhere, you should be able to follow the example of the bottom line in listing each. Save the original under a name like MainButtonTemplate.py in case you mess up! The script looks like this before adding any entries: import poser poser.DefineScriptButton(1, "", "...") poser.DefineScriptButton(2, "", "...") poser.DefineScriptButton(3, "", "...") poser.DefineScriptButton(4, "", "...") poser.DefineScriptButton(5, "", "...") poser.DefineScriptButton(6, "", "...") poser.DefineScriptButton(7, "", "...") poser.DefineScriptButton(8, "", "...") poser.DefineScriptButton(9, "", "...") poser.DefineScriptButton(10, ":Runtime:Python:PoserScripts:clearButtons.py", "Clear Buttons")