Pack data from 3 widgets and then send() it

Hi,
I was looking to way to send a pack of data (xyz) coming from 3 faders and then send it.
I thought something like could work but I think I missing something around syntax.

Should I use an external script ?

var xget = get('spat_position_xget')
var yget = get('spat_position_yget')

send('/adm/obj/1/xyz', [xget, yget, value])

send('/adm/obj/1/xyz', xget, yget, value) should work, but only when the widget that contains that script is touched.

1 Like

work fine, thx
Now have to deal with all OSC feedback ahah