我是Applescript的完全新手。我正在使用Midipipe,并尝试设置一些条件来改变Midi音符数字。
我有两个Midi输入,基本上我只需要一系列:
if(输入一个==(程序变更变量)){ 输入两个+ 1} 其他 等等等等......
我需要知道如何格式化它并将其编译为在Midipipe中运行,以便输出条件。非常感谢!
答案 0 :(得分:3)
AppleScript中条件的基本陈述是:
if variable = value then
-- do something
else if variable = othervalue then
-- do something
else
-- do something
end if
obs:“ - ”是注释行