Using the Photoshop API, can I change the tracking value of a specific text character in my textItem
Is it possible to change specific text properties in PS text using a script? I've gotten the ability to insert text going with a Python wrapper:
doc = psApp.Application.ActiveDocument
layer_scenario_text = doc.ArtLayers["TextLayer"]
text_of_layer = layer_scenario_text.TextItem
text_of_layer.contents = "Text to change"But is it possible to change say, the tracking value for selected characters with scripting? Looking at the API docs, I've found the textItem.tracking property, but would I be able to have it apply to just ONE part of the string? E.g. the word change in my example would have a tracking of -20 but everything else in the string stays the same?
Many thanks!
