Looking for a script or action for changing font face for a particular word or text in a paragraph.
I have multiple .psd files (80+) where I need to change font for a specific text say "Hello" from Arial to Tahoma and also make it bold.
Really appreciate a help!
You could try "jam" framework. There is class for manipulating with text. http://www.tonton-pixel.com/JSON%20Action%20Manager/jsDoc/symbols/jamText.html You are looking for textStyleRange.
You need: - create loop which checks all layers - read one text layer - find on which character index substring starts, where is end - apply jamText.setLayerText - read next layer
It goes also without framework. The structure is analogous. The code will be uglier.