gpt4 book ai didi

AppleScript:tell 语句中的调用处理程序

转载 作者:行者123 更新时间:2023-12-04 14:34:04 30 4
gpt4 key购买 nike

每次运行此脚本时,我都会收到此错误:系统事件出现错误:“Test123”不理解通知消息。

代码:

--more code...
tell application "System Events"
if some_system_events_property then
my notify of "Test123" thru "Test"
end if
end tell
--more code...
to notify of message thru level
display dialog message with titel level
end notify

我试图更换
my notify of "Test123" thru "Test"

与以下,没有任何成功:
notify of "Test123" thru "Test" of me
(notify of "Test123" thru "Test") of me

最佳答案

不完全确定您要做什么,但这里是如何调用函数和传递参数的示例

tell application "System Events"
set m to "message content"
my notify(m)
end tell
--more code...
on notify(message)
display dialog (message)
end notify

关于AppleScript:tell 语句中的调用处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5902921/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com