Oh my gosh, one of the few JS for Max tutorials that actually takes it slow and explains each step! Thank you!!!!
@willowpets3 жыл бұрын
Your voice is really nice to listen to
@enthusiast17 ай бұрын
Nice tutorial, thank you!
@OrneeMendii6 жыл бұрын
Could you please look at my Javascript and tell me what I am doing wrong? I an error on max saying the output1 is not defined, line 8. Although I have followed your instructions.
@Programmingforpeople6 жыл бұрын
Can you copy and paste your code into the comments? My quick guess would be you've missed or miss-spelt the 'var' at the start of the line. An alternative way you could test would be: function mathTest (a,b){ var output1 = 0; var input1 = a; var input2 = b; output1 = input1 + input2; outlet(0, output1); }
@OrneeMendii6 жыл бұрын
Programming for People Thank you for your help! Such a quick reply 😊
@tohtorizorro2 жыл бұрын
[pak 0 0] -> [prepend mathTest] could also be both done in the pak: [pak mathTest, 0, 0]
@udomatthiasdrums53227 жыл бұрын
cool stuff, like it!!
@LennyLaserdisk2 жыл бұрын
How would you go about doing this with a list input
@darkwraithcovenantindustries2 жыл бұрын
use the list() function to pass in lists from one of the inlets. use arrayfromargs(arguments) to put the list into an array.
@JovanWolf966 жыл бұрын
If you want to avoid cut-paste all the time just add autowatch = 1; at the top of js file
@Programmingforpeople6 жыл бұрын
More recent versions of max 7 can handle this waaaay better. Just saving of the js file after editing should trigger an update!