0
開始使用Illustrator腳本並嘗試編寫一個腳本,該腳本允許我通過輸入更改變量並生效保存設置。保存選項我想改變是如下:Illustrator保存選項和使用變量設置
-- Save and overwrite
save theCurrentFile in file WorkPath as Illustrator ¬
with options {class:Illustrator save options ¬
, compatibility:Illustrator 14 ¬
, embed linked files:true ¬
, font subset threshold:0.0}
我希望能夠向兼容性更改爲一個變量,但無論我設置的變量,我無法理解它。我是在這樣的事情之後:
--Variable
set CompatibilityType to "Illustrator 14"
-- Save and overwrite
save theCurrentFile in file WorkPath as Illustrator ¬
with options {class:Illustrator save options ¬
, compatibility:CompatibilityType ¬
, embed linked files:true ¬
, font subset threshold:0.0}
我在想什麼,這不想工作。我在一個屬性列表中做了類似的事情。