6449 => int port; OscSend xmit; // OSC Send Object xmit.setHost( "localhost", port ); while( true ) { xmit.startMsg( "/foo/notes", "i f" ); // start message, int, float Std.rand2( 30, 80 ) => xmit.addInt; // fill in the int Std.rand2f( .1, .5 ) => xmit.addFloat; // fill in float, message is sent now 0.2::second => now; }