Applescript 中的条件语句?
我是 Applescript 的新手。我正在使用 Midipipe,并尝试设置一些条件来更改 Midi 音符编号。
我有两个 Midi 输入,基本上我只需要一系列:
If (输入一个 == (程序更改变量)){ 输入二+1} 别的 等等等等...
我需要知道如何格式化它并编译它以在 Midipipe 中运行,以便它输出条件。非常感谢!
I am a complete neophyte with Applescript. I am using Midipipe, and trying to set up some conditionals to alter Midi note numbers.
I have two Midi inputs and basically I just need a series of:
If (input one == (a program change variable)){
input two + 1}
else
blah blah blah...
I need to know how to format it and compile it to run in Midipipe so that it outputs the condition. Thanks so much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AppleScript 中条件语句的基本语句为:
obs: "--" 是注释行
The basic statements for conditionals in AppleScript are:
obs: "--" are comments lines