i am new to PS scripting so this might be a stupid question
I don't know if there are any photoshop scripting (JS) geniusses here but I've been trying to get the actual height of a text layer (so i can position the next line right beneath it) with:
var abc= app.activeDocument.activeLayer.height.value;
and then I try to write it in another textlayer using $.toString(abc)
but all I get as output is "[helper object]"
i am new to PS scripting so this might be a stupid question
I don't know if there are any photoshop scripting (JS) geniusses here but I've been trying to get the actual height of a text layer (so i can position the next line right beneath it) with:
var abc= app.activeDocument.activeLayer.height.value;
and then I try to write it in another textlayer using $.toString(abc)
but all I get as output is "[helper object]"
any tips?