-1

私はスクリプトを書いていて、何か特別なものが必要です:

「ファイルを選択」でファイルを選択したときに、パスがテキストのようになっているという変数が必要です。私のスクリプト:

set thePath to choose file
display dialog "The path is: " & thePath buttons {"OK"} default button 1

だから私は見たい:「パスは次のとおりです:Macintosh HD / user / ... / file.jar」

(必要な場合: 選択したファイルは .jar ファイルです)

スクリプトを開始すると、パスが表示されました。

あなたが私を理解してくれることを願っています。私はドイツ出身で、英語があまり上手に話せません :-)

お時間をいただきありがとうございました

4

2 に答える 2

0

たぶん非常に遅い答えかもしれませんが、次のようなことを試してみませんか:

set thepath to (choose file) -- (or folder if you want to)
display dialog "The chosen path is" & thepath & "If the chosen path is ok then press the button continue." buttons {"Cancel","Continue"} default button 2 cancel button "Cancel" with title "Choose your path" with icon note -- You can make the note icon custom (search for custom applet.icns)
于 2015-07-27T08:08:40.877 に答える