我已经看了很多其他问题,但我似乎无法用setTimeout解决这个问题
所以我一直在努力解决这个问题,但由于某些原因,setTimeout不起作用,有什么提示吗?
function curves(val_name, mini, maxi, t_amount, steps) {
//t_amount MUST be in ms
for (x = 0; x < steps; x++) {
var x_mod = scale(x, -6, 0, 0, steps);
var value = setTimeout(calculate_curve, (t_amount / steps), x_mod);
switch (val_name) {
case "vol_stretch1":
var vol_stretch1 = this.patcher.getnamed("stretching").subpatcher(0).getnamed("vol_stretch1");
vol_stretch1 = value
break;
case "vol_stretch2":
var vol_stretch2 = this.patcher.getnamed("stretching").subpatcher(0).getnamed("vol_stretch2");
vol_stretch2 = value
break;
case "vol_stretch3":
var vol_stretch3 = this.patcher.getnamed("stretching").subpatcher(0).getnamed("vol_stretch3");
vol_stretch3 = value
break;
}
}
}
function calculate_curve(x) {
var constant_e = 2.718281828459;
var result = (1 / 1 + (constant_e ^ (x * -1))) * -1; //sigmoid function * -1 to have the nice rise
}
function scale(unscaledNum, minAllowed, maxAllowed, minimum, maximum) {
return (maxAllowed - minAllowed) * (unscaledNum - minimum) / (maximum - minimum) + minAllowed;
}
您可以忽略该开关,因为它适用于MaxMSP的扩展,但在此处并不重要。我得到的错误是&#34; Javascript ReferenceError:setTimeout未定义&#34;。非常感谢任何帮助!
答案 0 :(得分:3)
我之前没有和Max一起工作,但是通过少量的搜索,你看起来就像是在插件中写一些东西。
看起来Max正在运行它自己的某种Javascript环境。 setTimeout
是Javascript中浏览器的window
对象上的一种方法,因此它不一定在浏览器之外的Javascript中实现,因为Max似乎是。
推荐的替代方案似乎是使用环境公开的Task对象,这里有一些文档: https://docs.cycling74.com/max5/vignettes/js/jstaskobject.html
我无法对此进行测试,但从文档中可以看出下面的内容应该有效:
var task = new Task(function() {
calculate_curve(x_mod);
}, this);
task.schedule((t_amount / steps));