我正在尝试执行以下操作:
on cleanup(x)
tell application "Finder"
clean up window 1 by x
end tell
end cleanup
cleanup("name")
然而,由于 x 变量是一个字符串,清理命令不接受它并以错误退出。有没有办法将字符串转换为命令接受的字符串或其他解决方案来取消引用变量而不使用 if,else 语句,如下所示:
on cleanup(x)
tell application "Finder"
if x is "name" then
clean up window 1 by name
end if
end tell
end cleanup
cleanup("name")