Shortcut to show document of the selected node?

   912   5   1
User Avatar
Member
212 posts
Joined: 6月 2023
Offline
When I press F1 in Houdini, it always shows up the homepage of local document (http://127.0.0.1:48626/). How could I make it show the document page of the selected node? For example if I have a PolyBevel SOP selected, I would like it to show http://127.0.0.1:48626/nodes/sop/polybevel [127.0.0.1] instead of just http://127.0.0.1:48626.

Right Click -> Help... works, but F1 doesn't.
User Avatar
Member
679 posts
Joined: 2月 2017
Offline
click on the question mark in the upper right corner of the nodes parameter interface.
User Avatar
Member
233 posts
Joined: 3月 2009
Offline
CYTE
click on the question mark in the upper right corner of the nodes parameter interface.


They question was about a keyboard shortcut.
User Avatar
Member
7785 posts
Joined: 9月 2011
Offline
https://www.sidefx.com/bugs/submit/ [www.sidefx.com]
User Avatar
Member
4519 posts
Joined: 2月 2012
Online
Hi,

You can assign this code to a shelf by drag and drop and then assign a global hotkey to that shelf tool:

selNodes = hou.selectedNodes()
if selNodes:
    hou.ui.displayNodeHelp(selNodes[-1].type())
Senior FX TD @ Industrial Light & Magic
Get to the NEXT level in Houdini & VEX with Pragmatic VEX! [www.pragmatic-vfx.com]

youtube.com/@pragmaticvfx | patreon.com/animatrix | animatrix2k7.gumroad.com
User Avatar
Member
233 posts
Joined: 3月 2009
Offline
animatrix_
Hi,

You can assign this code to a shelf by drag and drop and then assign a global hotkey to that shelf tool:

selNodes = hou.selectedNodes()
if selNodes:
    hou.ui.displayNodeHelp(selNodes[-1].type())

Thank you!
  • Quick Links