-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 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
于 2013-10-06T15:32:29.543 回答
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 回答