dsp start/stop syntax
hi,
does anyone know the js syntax equivalent of ;dsp start and stop ? i've tried several things with no luck, like : dsp("start"), or which should not work anyways : max.dsp("start")
any idea?
thx!
Maybe something likedsp.start();
In my good old JavascriptInMax.pdf from 2006, I read page 22 that ;max preempt 1's equivalent in js is max.preempt (1);
yes max. (equivalent of ;max) is a reserved method in js for max, but anything equivalent to ;dsp, for instance dsp.start() doesnt seem to work.