我尝试了很多很多场景来制作一个提高音量但没有成功的脚本。这里的例子:
tell application "System Events"
set MyList to (name of every process)
end tell
if (MyList contains "Spotify") is true then
tell application "Spotify"
set volcheck to get sound volume
set volcheck to (volcheck + 10)
set sound volume to volcheck
end tell
end if
或者 :
tell application "System Events"
set MyList to (name of every process)
end tell
if (MyList contains "Spotify") is true then
tell application "Spotify"
set sound volume to (sound volume + 10)
end tell
end if
为了调试,我在不同的步骤后使用了命令“说音量”,我发现该值停留在他第一次获得的相同值上。它会“重置”它的唯一方法是按下暂停/播放。每次我暂停/播放“音量”时,都会获得新的值并且修改工作一次,直到我再次暂停/播放。
我在这里寻求帮助:https ://forum.keyboardmaestro.com/
他们说我应该报告这个发现。在 spotify 上,我正在寻找我应该在哪里报告这个并且它说没有开发人员在这里发布。所以我来了。
所以我的问题是:
我是谈论这个错误的正确地方吗?
和
有人有解决方案吗?