Control two differents Ableset sessions in the same canvas?

Hello,

I use 2 ablesets sessions simultanously (but they don’t need to be triggered simultanously)

1 ableset session for a redondant playback rig (192.168.0.11 and 192.168.0.12)

1 ableset session on a third computer for FOH FX (192.168.0.13) and not the same locator

Is it possible to control the two different sessions in the same canvas (all the computer in the same network) ?

Best regards

Arnaud

Hey @Arnaud_V, that’s definitely possible.

If you just need to send commands to the third computer, you can do so by prepending the IP address and port of AbleSet on that computer to the OSC command. AbleSet always listens for OSC commands on port 39051, so for your FoH computer, that could be:

sendOsc("192.168.0.13:39051/global/play");

If you’d like to also access values from the FoH computer, you’d have to set up an OSC connection like this by going to the Settings page, clicking “OSC Settings” and then creating a new connection:

I’ve chosen port 33333 as the listen port, but you can choose any other free port on your system if you like.

You can now send OSC commands to :AbleSetFOH, for example:

sendOsc(":AbleSetFOH/global/play");

And you can also access values like this:

osc(":AbleSetFOH/global/isPlaying")

Let me know if this works for you :slight_smile: