Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
更改Applescript中的图标大小;选择文件";窗_Applescript - Fatal编程技术网

更改Applescript中的图标大小;选择文件";窗

更改Applescript中的图标大小;选择文件";窗,applescript,Applescript,有没有办法更改“选择文件”预览窗口中的图标大小?我想放大预览缩略图 这是我正在使用的代码。非常基本: set theFile to (choose file of screenFolder with prompt "Select a file to read:" of type {"JPG"}) 谢谢 据我所知,您无法更改预览窗口的大小(对于由此带来的不便,我深表歉意) 笔记 你的代码无法编译。我假设您希望自动打开screenFolder。如果这是真的,那么使用默认位置属性,它会自动导

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

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

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

谢谢

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

笔记 你的代码无法编译。我假设您希望自动打开
screenFolder
。如果这是真的,那么使用
默认位置
属性,它会自动导航到所需的文件夹。你的新代码应该是这样的

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