luka_schulz Posted June 11, 2019 Share Posted June 11, 2019 This is a really little thing but is there away to use "ctrl + a" in the TAB MENU? Quote Link to comment Share on other sites More sharing options...
LaidlawFX Posted June 11, 2019 Share Posted June 11, 2019 Nope. You can not override the tab menu with hotkeys it's not designed for it. You could do stuff in python to create multiple nodes if you know what you want. Quote Link to comment Share on other sites More sharing options...
luka_schulz Posted June 11, 2019 Author Share Posted June 11, 2019 Would you happen to know why the ctrl / cmd keys aren't registered in the tab menu? Quote Link to comment Share on other sites More sharing options...
bunker Posted June 11, 2019 Share Posted June 11, 2019 g=hou.node('/obj/geo1') for i in hou.nodeTypeCategories()["Sop"].nodeTypes(): try: g.createNode(i) except: print "couldn't create",i you can do that in python easily but it takes a few minutes to create the 959 node types (just the SOPs in this example) 1 Quote Link to comment Share on other sites More sharing options...
LaidlawFX Posted June 11, 2019 Share Posted June 11, 2019 1 hour ago, luka_schulz said: Would you happen to know why the ctrl / cmd keys aren't registered in the tab menu? Tab is an old menu system as I understand. You could RFE it for sure. However, I would outline a good series of use cases for it. I do not know of a case where by default you can select multiple stock nodes via the different options. Scripting like bunker showed is a completely different case. Quote Link to comment Share on other sites More sharing options...
luka_schulz Posted June 11, 2019 Author Share Posted June 11, 2019 I wasn't looking to select nodes. I was just looking to select the text I type in the tab menu. When I press ctrl + A, it types the letter 'a' opposed to selecting all the type in the search field. It's a super little thing, but I'm just trying to avoid pressing the delete key a lot of times. Quote Link to comment Share on other sites More sharing options...
luka_schulz Posted June 11, 2019 Author Share Posted June 11, 2019 12 minutes ago, bunker said: g=hou.node('/obj/geo1') for i in hou.nodeTypeCategories()["Sop"].nodeTypes(): try: g.createNode(i) except: print "couldn't create",i you can do that in python easily but it takes a few minutes to create the 959 node types (just the SOPs in this example) Lol, I'm not sure why I would ever need all 959 SOP nodes, but I appreciate this. Quote Link to comment Share on other sites More sharing options...
bunker Posted June 11, 2019 Share Posted June 11, 2019 (edited) I thought you wanted ALL the nodes nevermind Edited June 11, 2019 by bunker Quote Link to comment Share on other sites More sharing options...
luka_schulz Posted June 11, 2019 Author Share Posted June 11, 2019 I mean now I kinda do hahah. Maybe, I can play Tetris or Brick Breaker with all the different node types. But ya my request is a very silly (simple?) one, I just wanna select what I type in the tab menu. Quote Link to comment Share on other sites More sharing options...
LaidlawFX Posted June 12, 2019 Share Posted June 12, 2019 Yeah you would have to RFE that request like if do Tab > and type d - e - l - e - t - e I can not select the world "delete". Then again the whole Tab Menu could use lots of love in the first place, it hasn't changed since version 9 with the new UI if I remember correctly. Quote Link to comment Share on other sites More sharing options...
Skybar Posted June 12, 2019 Share Posted June 12, 2019 I usually just press tab twice, to close and open a new one. It's kinda quick. 1 Quote Link to comment Share on other sites More sharing options...
luka_schulz Posted June 13, 2019 Author Share Posted June 13, 2019 4 hours ago, Skybar said: I usually just press tab twice, to close and open a new one. It's kinda quick. Thanks Skybar, simple solution, same amount of key strokes. I might put in an RFE at some point. 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.