Osc Between Maxmsp And Renoise

Hi

anyone got experience with this. I am new to renoise and OSC (and still learning Max but have been using a while).

I have downloaded the PD example for OSC comms with Renoise but can’t seem to get the same to work in Max.

the OpenSoundControl object in Max only wants to take one argument. not the full message like in PD “/renoise/trigger/note_on -1 -1 60 80”

any tips?

this works for me. you should use udpsend. [details=“Click to view contents”] copy and go new from clipboard in max ```
{ “boxes” : [{ “box” : { “maxclass” : “button”, “patching_rect” : [ 176.0, 82.0, 20.0, 20.0], “id” : “obj-6”, “numinlets” : 1, “numoutlets” : 1, “outlettype” : [“bang”] } } , { “box” : { “maxclass” : “newobj”, “text” : “udpsend 127.0.0.1 8000”, “patching_rect” : [177.0, 343.0, 140.0, 20.0], “id” : “obj-7”, “numinlets” : 1, “numoutlets” : 0, “fontname” : “Arial”, “fontsize” : 12.0 } } , { “box” : { “maxclass” : “number”, “patching_rect” : [243.0, 102.0, 50.0, 20.0], “id” : “obj-16”, “numinlets” : 1, “numoutlets” : 2, “fontname” : “Arial”, “outlettype” : [“int”, “bang”], “fontsize” : 12.0 } } , { “box” : { “maxclass” : “number”, “patching_rect” : [176.0, 113.0, 50.0, 20.0], “id” : “obj-11”, “numinlets” : 1, “numoutlets” : 2, “fontname” : “Arial”, “outlettype” : [“int”, “bang”], “fontsize” : 12.0 } } , { “box” : { “maxclass” : “newobj”, “text” : “pak”, “patching_rect” : [176.0, 146.0, 32.5, 20.0], “id” : “obj-12”, “numinlets” : 2, “numoutlets” : 1, “fontname” : “Arial”, “outlettype” : [""], “fontsize” : 12.0 } } , { “box” : { “maxclass” : “message”, “text” : “36 64”, “patching_rect” : [274.0, 176.0, 47.0, 18.0], “id” : “obj-17”, “numinlets” : 2, “numoutlets” : 1, “fontname” : “Arial”, “outlettype” : [""], “fontsize” : 12.0 } } , { “box” : { “maxclass” : “message”, “text” : “48 127”, “patching_rect” : [274.0, 146.0, 47.0, 18.0], “id” : “obj-18”, “numinlets” : 2, “numoutlets” : 1, “fontname” : “Arial”, “outlettype” : [""], “fontsize” : 12.0 } } , { “box” : { “maxclass” : “message”, “text” : “/renoise/trigger/note_on -1 -1 $1 $2”, “patching_rect” : [176.0, 239.0, 199.0, 18.0], “id” : “obj-21”, “numinlets” : 2, “numoutlets” : 1, “fontname” : “Arial”, “outlettype” : [""], “fontsize” : 12.0 } } ], “lines” : [{ “patchline” : { “source” : [ “obj-21”, 0], “destination” : [“obj-7”, 0], “hidden” : 0, “midpoints” : [] } } , { “patchline” : { “source” : [“obj-6”, 0], “destination” : [“obj-11”, 0], “hidden” : 0, “midpoints” : [] } } , { “patchline” : { “source” : [“obj-11”, 0], “destination” : [“obj-12”, 0], “hidden” : 0, “midpoints” : [] } } , { “patchline” : { “source” : [“obj-16”, 0], “destination” : [“obj-12”, 1], “hidden” : 0, “midpoints” : [] } } , { “patchline” : { “source” : [“obj-18”, 0], “destination” : [“obj-21”, 0], “hidden” : 0, “midpoints” : [] } } , { “patchline” : { “source” : [“obj-17”, 0], “destination” : [“obj-21”, 0], “hidden” : 0, “midpoints” : [] } } , { “patchline” : { “source” : [“obj-12”, 0], “destination” : [“obj-21”, 0], “hidden” : 0, “midpoints” : [] } } ] }

  
post your patch that you're having trouble with. i'll try and have a look.  
  
  
btw this OSC extensions pack is handy: [http://cnmat.berkeley.edu/downloads](http://cnmat.berkeley.edu/downloads) it includes the OSC-route object and other stuff.