How to open Edit Tool window with python?
1157
3
1
-
- jerry7
- Member
- 645 posts
- Joined: Nov. 2013
- Offline
Hi,
How to open Edit Tool's window with python?
Thanks!
Attachments:
editor.png (39.4 KB)
-
- GOgraphR
- Member
- 67 posts
- Joined: Oct. 2018
- Offline
Hey Jerry7 !
What exactly do you want to do ?
Maybe you would look into hou.shelves, hou.Shelf, hou.Tool ?
Probably you could find a method there that does what you want.
HTH!
HAND
-
- jerry7
- Member
- 645 posts
- Joined: Nov. 2013
- Offline
I want to make a tools manager.
The default tool list manager is too simple that can't search or edit selected one.
Edited by jerry7 - May 19, 2023 06:41:08
-
- GOgraphR
- Member
- 67 posts
- Joined: Oct. 2018
- Offline
The closest I got by now is:
node=hou.node(PATH_TO_NODE)
hou.ui.openTypePropertiesDialog(node)
And there the
Interactive
and
ShelfTools
tabs.