Houdini

 Houdini Parameter Interface code for a button that “jumps” the network view to center on the two hardcoded node names, thereby framing your network view in a useful place for the user:

hou.clearAllSelected(), hou.node("../leftSideFinalOutput").setGenericFlag(hou.nodeFlag.Current, True) , hou.node("../rightSideFinalOutput").setGenericFlag(hou.nodeFlag.Current, True) , (hou.ui.paneTabOfType(hou.paneTabType.NetworkEditor)).homeToSelection(), hou.clearAllSelected()

 Houdini Parameter Interface code for a button that “dives” the network view inside of a subnet to focus on the hardcoded node name, thereby framing your network view in a useful place for the user… note the use of the single period in ./ for diving in vs double period in ../ for looking in the same space as the current node

hou.clearAllSelected(), hou.node("./instancer/MASK_VISUALIZE/IN_HEIGHTFIELD").setGenericFlag(hou.nodeFlag.Current, True), (hou.ui.paneTabOfType(hou.paneTabType.NetworkEditor)).homeToSelection()