Answered
How do I implement right align text with photoshop script?
var txlayerRef = app.activeDocument.artLayers.add()
txlayerRef.kind = LayerKind.TEXT;
txlayerRef.name = "info";
var myTextRef = txlayerRef.textItem;
myTextRef.contents = "*Do what you want\r*till the end";
myTextRef.font = "Arial";
myTextRef.AnchorPosition = "MIDDLECENTER";
myTextRef.size = 10;Within photoshop script, How can I align text to right side?
Can't find reference from "photoshop-javascript-ref-2020"..
