Applescript 中的条件语句?

发布于 2024-10-17 19:22:02 字数 208 浏览 3 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪#恶を代价 2024-10-24 19:22:02

AppleScript 中条件语句的基本语句为:

if variable = value then
    -- do something
else if variable = othervalue then
    -- do something
else 
    -- do something
end if

obs: "--" 是注释行

The basic statements for conditionals in AppleScript are:

if variable = value then
    -- do something
else if variable = othervalue then
    -- do something
else 
    -- do something
end if

obs: "--" are comments lines

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文