次の 2 つのコールバック関数があります。clipname 関数と has_clip 関数の間で名前オブジェクトを共有することは可能ですか? これはabletonのliveapiを使用していますが、それは一般的な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);
}