use_osc "localhost", 7000
osc "/foo/baz"
with_osc "localhost", 7010 do
osc "/foo/baz"
end
osc "/foo/baz"
|
# Specify port 7010
# Send an OSC message to port 7000
# set hostname and port for the duration
# of this do/end block
# Send an OSC message to port 7010
# Send an OSC message to port 7000
# as old setting is restored outside
# do/end block
|