我有以下两个回调函数。我想知道是否可以在 clipname 和 has_clip 函数之间共享名称对象?这是将liveapi用于ableton,但我确定它只是一个通用的javascript东西。
function loadclips() {
names = new LiveAPI(this.patcher, 1, clipname, “live_set tracks 0 clip_slots 1 clip”);
names.property = “name”;
slot = new LiveAPI(this.patcher, 1, has_clip, “live_set tracks 0 clip_slots 1”);
slot.property = “has_clip”;
}
function clipname(args) {
post(args);
}
function has_clip(args) {
post(args);
}