I am trying to export a report so I have a list of smartobject that each one have a stroke from the layer style how can I access the thickness and color of this stroke I tried this
import { app } from "photoshop";
const doc = app.activeDocument;
const rootLayers = doc.layers;
rootLayers.map((layer) => {
// I can't access the layer effects from here
})
thanks for the reply @Karmalakas I will check it and give it a try, I found all the attribute of the layer except the stroke in this solution but it is a great start