dsp start/stop syntax

fraction's icon

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!

pdelges's icon

Maybe something like
dsp.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);

fraction's icon

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.