DTP駆け込み寺
  1. [20452] Applescript(Indesign)のpaste もはぺ 2020/11/16 20:26
    1. [20453] Re: paste -e 2020/11/18 11:16
      1. [20454] Re^2: paste もはべ 2020/11/18 19:32

[ 返信 ]

Applescript(Indesign)のpaste

Applescript(Indesign)のpasteコマンドは、コピペのペーストとは違うのでしょうか?

Applescriptを利用して
選択したアイテム、SelectFrameに対して、
select insertion point -1 of SelectFrame
を実行すると、ストーリーの末尾を選択できるのですが、
スクリプティングガイド6章の、テキストと組版の例のように、
pasteと記述してもクリップボード内のテキストを
貼り付けることができません。

[20452] もはぺ (2020/11/16 Mon 20:26)

[ 返信 ]


Re: paste

スクリプティングガイドがどんな記述なのかわかりませんが、
以下の様な感じで使えば大丈夫です。
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)

[ 返信 ]


Re^2: paste

> 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)