If I execute it from the scripting terminal or executes it from a script, which message on which port can I expect to get something back on? My guess is port 8000 and /fromrenoise/luck/track1/volume, but I cant get it working
If I get the above working, wouldnât it be possible to send this as en evaluate message. So basically I want to ask for the volume of track 1 over OSC and get the value send back, without having to write a tool. Is that possible?
Return message depend on what you want it to send back. OSC Client/Server are completely custom based. There are some default messages that you can find in the GlobalOSCActions.lua, they donât return responses but you can test them by sending that specific command:
add_global_action {
pattern = "/transport/panic",
description = "Stop playback and reset all playing instruments and DSPs",
arguments = nil,
handler = function()
song().transport:panic()
end
}
So if you would send a â/transport/panicâ to Renoise from the client, Renoise should stop playing whatever it is playing:in that case you know the connection is okay, else you can always look into the configuration tab for th OSC server and see in the message list if anything arrives at all.