【问题标题】:Changing icon size in Applescript "choose file" window?在Applescript“选择文件”窗口中更改图标大小?
【发布时间】:2011-07-23 23:18:26
【问题描述】:

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

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

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

谢谢!

【问题讨论】:

    标签: applescript


    【解决方案1】:

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

    注意

    您的代码无法编译。我假设您希望 screenFolder 自动打开。如果这是真的,那么使用default location 属性,它会自动导航到所需的文件夹。您的新代码应如下所示...

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

    【讨论】:

      猜你喜欢
      • 2011-08-30
      • 2015-01-29
      • 2013-09-17
      • 2018-03-18
      • 1970-01-01
      • 1970-01-01
      • 2022-07-08
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多