Kinda hijacking this thread again for a related problem, but read it through first as i discovered the solution myself by brute force… still posting for the chance of helping others
Trying to use the html property to use as a second label with this inside props tag of the matrix:
props.html="OSC{/ds/"+@{bank_id}+"/"+($+1)+"/num}";
using the same property outside of a matrix works fine like this:
OSC{/ds/@{bank_id}/1/num}
i can only assume the osc query is executed within the matrix script and the result of it is immediatly stored in the html property which then results as undefined and not stored as a literal string down to the matrix-button/item level where i am hoping to catch the incoming osc
and as im writing this here, i went back and tried escaping it like this
props.html="\O\S\C{/ds/"+@{bank_id}+"/"+($+1)+"/num}";
and it works nicely, also just went back to the documentation to see if its mention or not and i couldnt find anything. so im not sure if its intentioned behavior or just a lucky strike. maybe want to add it to documentation somewhere.
big love, the matrix button problem above still persist tho…