Search found 1 match

by elijahnelson
Sat Aug 12, 2023 04:49
Forum: Problems? Bugs? Solutions!
Topic: Send line break through OSC to text block?
Replies: 6
Views: 14659

Re: Send line break through OSC to text block?

Here's an example of how you might format your OSC message:

javascript
const osc = require('osc');

const udpPort = new osc.UDPPort({
localAddress: '127.0.0.1',
localPort: 12345, // Your OSC port
remoteAddress: '127.0.0.1', // Avenue's address
remotePort: 1234 // Avenue's OSC port
});

udpPort ...