btw. is it faster to have a [bang( message or a [bng] gui?
Th GUI-[bng] can be much, much, much slower. You should only use it for GUIs, not for logic e.g. to replace a [t b].
there are 3 different bangs; |bng|: gui bang ... very slow, since it sends data over the gui connection
|bang(: the good old bang ... this is slow, too, since the string "bang" is converted to a bang message each time, you use it ...
|bang|: the fastest conversion ... best choice ...
cheers ... tim