windows – 如何创建函数

前端之家收集整理的这篇文章主要介绍了windows – 如何创建函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在finalescript中定义一个函数

假设我有一个finalescript,作为其中的一部分,我有一个代码块,可以转换一些n行的度量.但是,我觉得创建一个功能转置(n)会更加方便,它可以将它转换为n个半步.

那么,有没有办法在finalescript中做到这一点?

没有.在 closest thing I could find to a documentation中,没有任何关于功能文章.

但是,当我想到你的特定问题时,你是否需要转置(n)功能?因为如果你想要一个换位脚本,你不会简单地转换一切吗?

finalescript blog的一个例子:

//set this to the key of the instrument transposition

key signature F major

//highlight the staff that needs to be made key independent
//or you can set the staff to be selected by removing the
//comment slashes and changing the number

select staff 1

staff attributes
check “Key Signature” Near “Independent Elements”
press “ok”

//Set this to the key of the piece,such as C major

key signature C Major

//to correct the pitch of the staff you need to set this

menu item “Utilities/Transpose”
radio “Down”
radio “Chromatically”
popup “Perfect Fourth”
type “0” near “Octave(s)
uncheck “Preserve Original Notes”
press “OK”

我同意在finalescript中使用函数会非常好用和方便,但我想finalescript没有它们.

祝好运!

猜你在找的Windows相关文章