GameSprit

自転車やMac・AppleScript、映画・小説やドラマのレビュー、備忘メモ・クイズなどを置いています。

AppleScript : choose file

2012-10-08 20:30:12 | 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







キーワード:AppleScriptchoose fileファイル選択

最新の画像もっと見る

post a comment

ブログ作成者から承認されるまでコメントは反映されません。