(wow, to this day folks still using my ‘p Monome_Protocol_Jumper’?! i’m flattered
made that thing for Rodrigo long ago, but I’ve never actually used it myself)
hmmm… so i’m not an M4L user but until tehn or others chime in, i’m guessing it’s to do with the message: “/monome/grid/led/set $1 $2 $3”(near the top left of the patch)… instead of the word ‘monome’ for the prefix, you probably want it specific to the app or track… for example, you have ‘prepend /grid/grid/led/col’ in your screenshot above, so you could similarly use “/grid/grid/led/set $1 $2 $3”(‘grid’ is the name of the app so that would work if you changed everything to look the same(though it looks confusing because that word is also used as part of the OSC standard for monome grids in general))…
i could be wrong, though, been awhile since i looked at other folks’s patches…
either way, that first prefix should be something specific to the app or the M4L track. say i had 4 patches loaded onto 4 separate M4L tracks, i’d probably choose 4 different prefixes for each separate M4L track… like so:
for the LEDs:
- “/mfla/grid/led/set $1 $2 $3”
- “/mflb/grid/led/set $1 $2 $3”
- “/mflc/grid/led/set $1 $2 $3”
- “/mfld/grid/led/set $1 $2 $3”
and for the buttons/“keys”:
- “route /mfla/grid/key”
- “route /mflb/grid/key”
- “route /mflc/grid/key”
- “route /mfld/grid/key”
since your app/.amxd is called ‘grid’, you could also change everything to look like:
“/grid/grid/led/set $1 $2 $3”, “route /grid/grid/key”, (and you already have “prepend /grid/grid/led/col”, “prepend /grid/gird/led/level/col” etc.)…
bottom line is that first prefix is how you can separate/focus control to/from each patch.
i’m probably just confusing but… hope it helps.