2013-10-05 84 views
-1

我正在寫一個劇本,我需要一些特別的東西:AppleScript的 - 選用文件路徑

我想,當我與選用「選擇文件」文件有在一個變量中的路徑是在像文本。我的腳本:

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

所以我想看看: 「的路徑是:麥金塔HD /用戶/.../ file.jar」

(如果需要的話:在選用文件是.jar-文件)

當我啓動腳本時,我可以看到路徑。

我希望你能理解我。我來自德國,我不能講英語非常好:-)

非常感謝您的寶貴時間

+0

什麼代碼中有你到目前爲止?另見:http://sscce.org – jev

回答

0

我不知道你問什麼。也許這樣?這表明你如何可以添加一個文本變量到指定位置到你的路徑......

set myVariable to "some text " 

set thePath to (choose file) as text 

set thePath1 to text 1 thru 10 of thePath 
set thePath2 to text 11 thru end of thePath 

set newPath to thePath1 & myVariable & thePath2 

display dialog "Original path: " & thePath & return & return & "New Path: " & newPath buttons {"OK"} default button 1 
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) 
相關問題