在Applescript“选择文件”窗口中更改图标大小?

时间:2011-07-23 14:07:45

标签: applescript

有没有办法在“选择文件”预览窗口中更改图标大小?我想让我的预览缩略图更大。

这是我正在使用的代码。很基本的:

    set theFile to (choose file of screenFolder with prompt "Select a file to read:" of type {"JPG"})

谢谢!

1 个答案:

答案 0 :(得分:0)

据我所知,您无法更改预览窗口的大小(对于给您带来的任何不便,我深表歉意)。

注意

您的代码无法编译。我假设你想要screenFolder自动打开。如果是,则使用default location属性,该属性会自动导航到所需的文件夹。你的新代码应该是这样的......

set theFile to (choose file with prompt "Select an image to read:" default location screenFolder of type {"JPG"})