Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将所有文本、格式和图像复制到另一个文本框。我尝试过使用文本,但它只复制第一个文本框,而不是线程文本框中的所有文本。
谢谢
这是一个简单的解决方案:
var doc = app.activeDocument; var page = doc.pages[0]; var frame1 = page.textFrames[0]; var frame2 = page.textFrames[1]; frame1.texts.everyItem().select(); app.copy(); frame2.texts.everyItem().select(); app.paste();