我想構建一個InDesign腳本,當您導入諸如粗體和斜體等html標記時,這些單詞會轉換爲粗體或斜體。InDesign腳本更改文本框中的子字體樣式
例如
I really like <strong>walking to the park</strong> and eating icecream
是:
我真的很喜歡步行到公園和吃冰淇淋。
但是,在我的文本框中,我只能得到一個段落來選擇一種風格,而不是單個單詞或短語。
在下面的例子中,我會想一個大膽的樣式應用到secondPhrase變量(我沒有問題,剝出標籤等 - 只是想知道我怎麼能應用樣式只是secondPhrase
with (myElement) {
// Apply basic text style
applyParagraphStyle(myDoc.paragraphStyles.item("DefaultText"));
var firstPhrase = "I really like";
var secondPhrase = " walking to the park";
var thirdPhrase = " and eating icecream";
contents = firstLine + secondLine + thirdPhrase;
}
下面
很棒!謝謝! – 2014-10-29 14:37:27
這不適合我。而不是大膽地突出顯示文本。 – yatinbc 2016-12-12 07:08:21