RNBO Objects & Operators send~
Open Help

send~

Send signals without patch cords

Description

send~ will transmit signals to receive~ objects that share the same name argument, providing the ability to send signals within a RNBO patcher and its subpatchers without using patch cords.

Note: send~ will not transmit messages between a RNBO patcher and its root-level Max patch.

Arguments

name [symbol]

Optional

Name of the send~ object. All receive~ objects that share the same name will receive data from a send~ object with that name.

Note that unlike send , creating multiple send~ objects with the same name will result in a compilation error from the RNBO patch.

Inlets

input [signal]

A signal received in the inlet is sent out the outlet of any receive~ object that has the same name.

Fixed Attributes

These attributes must be set in the object box and determine the behavior of the object at runtime.

name [symbol]

Name of the send~ object. All receive~ objects that share the same name will receive data from a send~ object with that name.

Note that unlike send , creating multiple send~ objects with the same name will result in a compilation error from the RNBO patch.

Dynamic Attributes

These attributes can be modified in the code during execution using the set object

input [signal]

A signal received in the inlet is sent out the outlet of any receive~ object that has the same name.

send [signal]

A signal received in the inlet is sent to the outlet of any receive~ object that has the same name.

See Also

Name Description
send Send messages without patch cords
receive~ Receive signals without patch cords