Question
Keyword replacement issue
I want to replace 'Hello' with 'Good evening', but the color will be completely changed. How can I keep the original color?
01.jpg
var layer = app.activeDocument.activeLayer;
if (layer.kind == LayerKind.TEXT) {
layer.textItem.contents = layer.textItem.contents.replace("Hello", "Good evening");
}