AppleScript“另存为”对话框?
Posted
技术标签:
【中文标题】AppleScript“另存为”对话框?【英文标题】:AppleScript "Save As" dialog? 【发布时间】:2013-07-08 15:49:39 【问题描述】:带有自定义文件类型扩展名的“另存为”对话框的 AppleScript 代码是什么?
我知道打开对话框的代码:
set theFiles to (choose file of type "set" with prompt "Save As File" without multiple selections allowed) as string
【问题讨论】:
【参考方案1】:保存命令可以在应用程序本身中找到,而不是在标准添加中。如果您尝试建立传递给保存命令的路径,则可以使用以下内容:
set resultFile to (choose file name with prompt "Save As File" default name "My File" default location path to desktop) as text
if resultFile does not end with ".txt" then set resultFile to resultFile & ".txt"
【讨论】:
以上是关于AppleScript“另存为”对话框?的主要内容,如果未能解决你的问题,请参考以下文章
Applescript Excel 2016 另存为 CSV