在 Applescript“选择文件”中更改图标大小窗户?
有没有办法更改“选择文件”预览窗口中的图标大小?我想让预览缩略图更大。
这是我正在使用的代码。非常基本:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,您无法更改预览窗口的大小(对于给您带来的不便,我深表歉意)。
注意
您的代码将无法编译。我假设您希望自动打开
screenFolder
。如果是这样,则使用默认位置
属性,该属性会自动导航到所需的文件夹。你的新代码应该看起来像这样......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 thedefault location
property, which automatically navigates to the desired folder. Your new code should look something like this...