oscP5 / OscP5 / send( )

name
send ( )
description
you can send osc packets in many different ways. see below and use the send method that fits your needs. 
Syntax
send(thePacket, theNetAddress);
send(thePacket);
send(thePacket, theNetAddressList);
send(theAddrPattern, theArguments);
send(theAddrPattern, theArguments, theNetAddressList);
send(theAddrPattern, theArguments, theNetAddress);
send(theAddrPattern, theArguments, theAddress, thePort);
send(thePacket, theClient);
send(theAddrPattern, theArguments, theClient);
send(thePacket, theIpAddress, thePort);
parameters
thePacketOscPacket 
theNetAddressNetAddress 
theNetAddressListNetAddressList 
theAddrPatternString 
theArgumentsObject[] 
theClientTcpClient 
theIpAddressString 
thePortint 


Returns
None
Usage
Application
Related