Я пытаюсь получить путь к файлу без имени файла из исходного документа Word, из Applescript, но у меня есть пустая строка.
Вот код из MacScripter.
Tell application "Microsoft Word"
activate
tell front document
--full path and file name
set TheName to get full name as string
display dialog TheName
--File path
set ThePath to get file path as string
display dialog ThePath
end tell
end tell
TheName
приходит идеально.Путь и имя файла, но ThePath
, будут пустыми.Есть идеи?