Tinderbox v10 Icon

Just in time

A recursing function. Figure out the section name only when actually needed.

Code

    function fAsk(iName){
        if($IsTop(iName)){
            return "";
        };
        if($IsTop(parent(iName))){
            return $SiblingOrder;
        }
    return fAsk($Path(parent(iName)))+"."+$SiblingOrder;
    };

Logic

Pros and Cons