2014-04-16 48 views
0
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中創建文本。如何將筆觸或邊框添加到創建的文字框架。任何引用或建議是高度讚賞。如何在Illustrator中使用Applescript將描邊添加到文本框架?

+0

在您的問題中包含更多代碼,最好使用針對Illustrator的工作片段(硬編碼所有這些變量)來簡化它。讓我們儘可能簡單地測試代碼將增加您回答的機會。 – adamh

+0

@adamh我沒有更多的代碼來創建文本框架。其他則是'If'和'Else'條件。以上代碼可以在Illustrator中編寫文本框架。 –

回答

0

文本路徑。

set properties of text path of mytexts to {stroked:true, stroke width:0.1} 
0

因此,有點難以分辨您的要求。

您是否試圖在文本框的外部添加筆觸,就像您在外觀面板中所做的那樣?像這樣?

enter image description here

如果是這樣,那麼你的運氣了。無法使用腳本中的額外筆劃和填充(source)。

但是,也許你只是想對文本應用筆劃,以便給它一個輪廓。像這樣的東西。

enter image description here

在這種情況下,這是你的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 
相關問題