set mytexts to make new text frame with properties {contents:"Annonation " & g & ":" & param_Text, kind:area text, position:{(-150), (new_Var)}, width:(checkValue3 - checkValue1), name:"notes"}
上面的代码用于使用Applescript在Illustrator中创建文本。如何向创建的文本框架添加笔触或边框。任何参考或建议都非常感谢。
答案 0 :(得分:0)
所以说出你要求的内容有点难。
您是否尝试在文本框架外部添加笔划,就像在外观面板中一样?像这样的东西?
如果是这样,那么你运气不好。在脚本编写中无法访问额外的笔划和填充(source)。
但也许你只想对文字应用笔划,给它一个轮廓。这样的事情。
在这种情况下,这是您要使用的AppleScript
tell application "Adobe Illustrator"
-- customize this as needed for your app
set theFrame to (make new text frame in current document with properties ¬
{contents:"My text", kind:area text, name:¬
"notes"})
set theRange to text range of theFrame
set stroke color of theRange to {red:45, green:20, blue:128}
end tell
答案 1 :(得分:0)
文字路径。
set properties of text path of mytexts to {stroked:true, stroke width:0.1}