0
我可以更改文本顏色,但格式也正在改變!我的一半文本是粗體,另一半是斜體。但最後所有的文字都變成了粗體。如何更改文本的顏色而不會丟失格式
var proj = app.project;
var theComposition = app.project.activeItem;
var theTextLayer = theComposition.layers[1];
var textProp1 = theTextLayer.property("Text").property("Source Text");
var textProp2 = theTextLayer.property("Source Text").value;
textProp2.fillColor = [1,1,1];
textProp1.setValue(textProp2);
Thx Ziki。我不喜歡這種接近,但...我看到我沒有其他的方式... Thnx! ExtendScript是如此沒有生產力。:( –
我也討厭這個,但是據我在Adobe論壇中的帖子瞭解,他們不會改進它,因爲Extenedscript社區不夠大,無法做出一些改進。 – Ziki