Applying paragraph style using script but bold and italic formatting lost
In the following script, the formatting of bold and italic words in text frame changed to normal/plain font.
Any suggestion to retain it without creating bold and italic character style sheets for it and looping each paragraph.
var myDoc = app.activeDocument;
myFrame = myDoc.textFrames.itemByName("virender");
myFrame.parentStory.paragraphs.everyItem().appliedParagraphStyle = "Body_text";
