It's giving me a javascript error, I'm not an expert on java, in line 230 it says :
var toplay = v_pattern[v_pos];
if ( v_matrixmode == 0 ) {
//print("v_pos: " + toplay + " // notes: " + v_arps[toplay].notes);
play_note(v_arps[toplay].next())
return;
Obviously var v_arps[toplay] is not defined (that's the error). May be just toplay?
This website uses cookies.
Clicking “Accept” means you consent to your data being processed and you’ll let us use cookies and other technologies to process your personal information to personalize and enhance your experience.
Click “Close” to deny consent and continue with technically required cookies that are essential for the website to function.
var toplay = v_pattern[v_pos];
if ( v_matrixmode == 0 ) {
//print("v_pos: " + toplay + " // notes: " + v_arps[toplay].notes);
play_note(v_arps[toplay].next())
return;
Obviously var v_arps[toplay] is not defined (that's the error). May be just toplay?