choose file
ファイル選択のダイアログ
構文:
choose file
キーワード:AppleScript、choose file、ファイル選択
ファイル選択のダイアログ
構文:
choose file
[with prompt] | text | 例:"choose file..…" |
---|---|---|
[of type] | list of text | 例:{"JPG", "png"} info for で調べることができる |
[default location] | alias | 例: tell application "Finder" to set aFol to startup disk choose file default location aFol as alias |
[invisibles] | boolean | 通常は false を使う |
[multiple selections allowed] | boolean | true にすると、結果は list で返る |
[showing package contents] | boolean | true にすると、package がフォルダとして扱われる |
choose file with prompt "choose file…"
set theImage to choose file of type {"JPG", "png"}
tell application "Finder" to set aFol to startup disk
choose file default location aFol as alias
キーワード:AppleScript、choose file、ファイル選択