gemini Posted May 21, 2016 Share Posted May 21, 2016 Hi, Can it be possible to Press the reload button by a python script? I tried the pressBUtton metthod like.. ( x is the button ) hou.node('/obj/null1/x').pressButton() But not succeded. Thanks, G Quote Link to comment Share on other sites More sharing options...
f1480187 Posted May 21, 2016 Share Posted May 21, 2016 (edited) You use method returning a Node object. Change it to one of this: hou.parm('/obj/null1/x').pressButton() hou.node('/obj/null1').parm('x').pressButton() Edited May 21, 2016 by f1480187 Quote Link to comment Share on other sites More sharing options...
gemini Posted May 23, 2016 Author Share Posted May 23, 2016 Thanks for it. Simple.. I would have thought it.. G Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.