Applescript(Indesign)のpasteコマンドは、コピペのペーストとは違うのでしょうか?
Applescriptを利用して
選択したアイテム、SelectFrameに対して、
select insertion point -1 of SelectFrame
を実行すると、ストーリーの末尾を選択できるのですが、
スクリプティングガイド6章の、テキストと組版の例のように、
pasteと記述してもクリップボード内のテキストを
貼り付けることができません。
[20452] もはぺ (2020/11/16 Mon 20:26)
スクリプティングガイドがどんな記述なのかわかりませんが、
以下の様な感じで使えば大丈夫です。
tell application "Adobe InDesign CC 2018"
tell document 1
set SelectFrame to item 1 of selection
select insertion point -1 of SelectFrame
end tell
paste
end tell
[20453] -e (2020/11/18 Wed 11:16)
> tell document 1
> set SelectFrame to item 1 of selection
> select insertion point -1 of SelectFrame
-- paste
> end tell
> paste
ありがとうございます。
applicationの直下に移したら実行できました。
[20454] もはべ (2020/11/18 Wed 19:32)