I finally started learning Python and after working through some basics I began with the HOM Cookbook “object_xform” lesson, where you create a shelftool that unparents selected nodes and keeps it's previous worldTransform value.
the code is as following:
—————————-
import toolutils
def unparenter(myvar):
xform = myvar.worldTransform()
myvar.setFirstInput(None)
myvar.setWorldTransform(xform)
viewer = toolutils.sceneViewer()
myvar = viewer.selectObjects(quick_select=True)
unparenter(myvar)
——————————————
all very clear to me, except that I don't know where is coming from.
Means I don't know the correct syntax for selectObjects().
How can I find methods that I don't know in the help?
In the shell I can type i.e. help(toolutils.sceneViewer) which works fine, but typing help(selectObjects) returns an error.
thanks for helping me out

regards,
Manuel

