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

发布于 2024-11-25 20:06:55 字数 207 浏览 0 评论 0原文

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

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

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

谢谢!

Is there a way to change the icon size in a "choose file" preview window? I'd like to make my preview thumbnails larger.

Here's the code I'm using. Pretty basic:

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

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡水深流 2024-12-02 20:06:55

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

注意

您的代码将无法编译。我假设您希望自动打开 screenFolder。如果是这样,则使用默认位置属性,该属性会自动导航到所需的文件夹。你的新代码应该看起来像这样......

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

As far as I know, you can't change the size of the preview window (I apologize for any inconvenience).

Note

Your code won't compile. I'm assuming you want screenFolder to automatically be opened. If that is true, then use the default location property, which automatically navigates to the desired folder. Your new code should look something like this...

set theFile to (choose file with prompt "Select an image to read:" default location screenFolder of type {"JPG"})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文