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

stamp([items, ]stampName)


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Operator First Added: 

Operator Altered: 

 Function   [other Function type actions]

 Group   [operators of similar scope]

 Data manipulation   [other Data manipulation operators]

 Baseline

 9.0.0


stamp(stampName)

This operator applies the stamp stampName is applied to the this note, i.e. the current note. So:

stamp("Do Stuff"); 

runs the stamp called "Do Stuff" on the current note.

stamp([items,]stampName)

items is an optional argument that can be a single note or a group or designator defined in any of the normal methods (literal, designator, expression).

If an items argument is supplied the stamp named stampName is applied discretely to each of items. So:

stamp("SomeNote","Do Stuff"); 

runs the stamp called "Do Stuff" on the note with the unique $Name "Some Note". Or:

stamp($MyList,"Do Stuff"); 

runs the stamp called "Do Stuff" on every note described by an item in the list stored in the value of $MyList for this note.