Using AbletonOSC with Open Stage Control

Complete newbie here.
I'm trying out yr great tool here, open stage control. I'm currently trying simple things, and I've a setup with a button starting a session in Ableton11, using AbletonOSC and this command:

send("/live/song/start_playing")

But how do I do a get request? send("/live/track/get/name") does not seem to return anything, when looking in the console.

Thanks in advance for helping a newbie :hugs:

There is no such thing as synchronous reply with osc, that's why send() doesn't return anything. You need to have a widget listening for the message that ableton sends back in order to make something of it, enabling the server's debug option may help figuring it out (it prints all outgoing/incoming messages).