【发布时间】:2011-07-23 23:18:26
【问题描述】:
有没有办法在“选择文件”预览窗口中更改图标大小?我想放大我的预览缩略图。
这是我正在使用的代码。非常基本:
set theFile to (choose file of screenFolder with prompt "Select a file to read:" of type {"JPG"})
谢谢!
【问题讨论】:
标签: applescript
有没有办法在“选择文件”预览窗口中更改图标大小?我想放大我的预览缩略图。
这是我正在使用的代码。非常基本:
set theFile to (choose file of screenFolder with prompt "Select a file to read:" of type {"JPG"})
谢谢!
【问题讨论】:
标签: applescript
据我所知,您无法更改预览窗口的大小(给您带来的不便,我深表歉意)。
您的代码无法编译。我假设您希望 screenFolder 自动打开。如果这是真的,那么使用default location 属性,它会自动导航到所需的文件夹。您的新代码应如下所示...
set theFile to (choose file with prompt "Select an image to read:" default location screenFolder of type {"JPG"})
【讨论】: