I've been saving some connections in a variable that my wandering code can keep track for use elsewhere.
Normally I can use something like $thisnode/childnode/child2node etc to access a child instead of find_node('childnode').find_node('child2node').
However, when I recall one of my saved locations in a variable (ie thisnode = self) and need to access a child node, I WANT to do this: thisnode.$childnode/child2node but that doesn't work and I'm forced to do thisnode.find_child('childnode').find_child... etc.
Is there a more sugary way to find child nodes in my situation?
thanks