gpt4 book ai didi

macos - 无法将 <<script>> 的第 1 项转换为 Applescript 中的类型字符串

转载 作者:行者123 更新时间:2023-12-02 03:37:25 25 4
gpt4 key购买 nike

将我的脚本导出为应用程序后出现此错误。在脚本编辑器中运行脚本时,它工作正常。但是在运行应用程序时我得到了他的错误

Can't make item 1 of <> into type string

这是我的代码。

set deptList to {"basketball", "football", "golf", "compliance"}

(choose from list deptList)
if result is not false then
set dept_name to item 1 as string
else
display dialog "Operation Cancelled"
error number -128

最佳答案

尝试使用:

set dept_name to text of result

Applescript 已经知道它是一个字符串(或文本),所以我们只需要告诉它设置变量 dept_nameresult< 的 text/.

tell application "Finder"
set deptList to {"basketball", "football", "golf", "compliance"}

(choose from list deptList)
if result is not false then
set dept_name to text of result
else
display dialog "Operation Cancelled"
error number -128
end if
display dialog dept_name
end tell

关于macos - 无法将 <&lt;script&gt;> 的第 1 项转换为 Applescript 中的类型字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22513803/

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