Я хочу выбрать диапазон в PowerPoint, я могу сделать это в Windows с помощью JavaScript как:
var textRange = app.ActiveWindow.Selection.ShapeRange.TextFrame.TextRange
textRange.Characters(0, 2).Select()
Результат приведенного выше скрипта:
В Apple Script:
tell application "Microsoft PowerPoint"
tell active window
set textRange to text range of text frame of shape range of selection of it
--What is the equivalent code? -> textRange.Characters(0, 2).Select()
end tell
end tell
Допустимая переменная textRange , но я не знаю, как преобразовать вторую строку кода js.