I have 70 layers in a photoshop file. I need to move X vertically, one after the other. So they’d look like:
>>Layer 1<<
>>Layer 2<<
>>Layer 3<<
Instead of just being stacked on top of each other. Not sure how to do this? Ideally, I should just specify an amount in pixels to Transform up.
A layer seems only be able to move with delta.
To move by delta use the
MyLayer.transform(DeltaX,DeltaY);where MyLayer is a reference to theartLayeryou want to move. The unit of DeltaX and DeltaY are the same as your Ruler in photoshop.I wrote this little function to move a layer to an absolute position. I hope this will be of some use to you…