Adobe Illustrator 文本选择与其他文档不同

发布于 2025-01-20 06:47:13 字数 590 浏览 0 评论 0原文

我正在从Word到Illustrator进行复制工作,每当我双击DOCX中的单词时,整个单词都会像This

“在此处输入映像说明”

但是当我尝试双击Infirstrator时,它会留下首先指出并选择最后一个“/”或选择整个单词,而不仅仅是中间部分。

I am doing a copy-paste job from Word to Illustrator, whenever I double click on the word in the docx the whole word is selected like this

enter image description here

but when I try to double click in illustrator it leaves the first point out and selects the last "/" or selects the whole word but not just the middle part.

enter image description here

enter image description here

what could be the reason for that, and is there an easier way to do that

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还给你自由 2025-01-27 06:47:13

对于最简单的情况,您可以通过以下方式修改所选范围:

var sel = app.selection; // get the selection
sel.start += 1;          // remove first letter from the range
sel.end -= 1;            // remove last letter from the range
sel.select();            // select the new range
app.copy();              // copy selected text in clipboard 

您可以将脚本放入操作中并为该操作分配一些键盘快捷键。

For simplest cases you can modify the selected range this way:

var sel = app.selection; // get the selection
sel.start += 1;          // remove first letter from the range
sel.end -= 1;            // remove last letter from the range
sel.select();            // select the new range
app.copy();              // copy selected text in clipboard 

You can put the script into an action and assign some keyboard shortcut for the action.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文