Addressing sends in ableton through liveOSC2

Hi all. I am using LiveOSC2 remote script for faders. When it comes to track volume or panning it works great as the script needs only track number in preArgs like so:

address: /live/track/volume
PreArgs: 0
---- as per liveOSC2 Readme file: /live/track/volume (int track_id, [float volume])

however the sends require 2 preArgs as per liveOSC2 instructions: /live/track/send (int track_id, int send_id, [float value])

I tried all kind of combinations/syntax in the preArgs like 0,0 / [0,0] / (0,0) but nothing works... any idea why it does not work?

[0, 0] would be the correct syntax, but liveOSC might be strict regarding types (by default all numbers are sent as floats), so you need to write this in typeTags: iif (for 1 int, 1 int, 1 float).

@Greenman's anwser is correct too.

1 Like

thanks both but unfortunately these do not seem to work - tried to define types as i, s and f but none works... might be an issue with LiveOSC2... have posted the question in their github page