This version is out of date, covering development from v9.0.0 to v9.3.0. It is maintained here only for inbound reference links from elsewhere. It is no longer actively updated.

Jump to the current version of aTbRef

Tinderbox v9 Icon

Left side expressions

Group designators may be used to assign a value to the attributes of several notes at once. For example, the $Rule:

$Color(children)="red" 

turns all the current note's children to red.

Designators may also be lists of notes, either explicit literal string list

$Color(/config/one;/config/two)="red" 

or implicitly computed via a find():

$Color(find($Price>5))="red" 

$Color(find($Color=="red"))="red" 

or implicitly computed by an expression enclosed in quotation marks

$Color("collect_if(all,$Price>5,$Path)")="red" 

$Color("collect_if(all,Color=='red',$Path)")="blue" 

In the last example note the need for nested single and double quotes.



A Tinderbox Reference File : Actions & Rules : Left side expressions