I'm not sure if this is a possibility, but is there a feature in Scene7 to create swatch sets upon uploading assets? Say, for instance, I have an image named "ASW100-BK001.jpg" and a swatch asset named "ASW100-BK001_SW.jpg". Is there a way to configure Scene7 so that it recognizes that anything with "_SW" is a swatch and should be placed in a Swatch Set with "ASW100-BK001.jpg" with a specified naming convention?
Thanks,
Veronica
Solved! Go to Solution.
Views
Replies
Total Likes
Hi Veronica,
You can try using api which will create swatch set.
some think like this
import com.day.cq.dam.commons.util.S7SetHelper;
import com.day.cq.dam.api.s7dam.set.SwatchSet;
//Creating swatchset
SwatchSet ss = S7SetHelper.createS7SwatchSet(Resource parent, String name, Map<String,Object> props)
//Adding asset to the swatch set
ss.add(Asset asset, Asset swatch)
;
Create a workflow process step with the above api which will create swatch set for every image upload in DAM. This is available in CQ 5.6.1
API - https://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/dam/commons/util/S7SetHelper.html
-Maruthi
Views
Replies
Total Likes
Hi Veronica,
You can try using api which will create swatch set.
some think like this
import com.day.cq.dam.commons.util.S7SetHelper;
import com.day.cq.dam.api.s7dam.set.SwatchSet;
//Creating swatchset
SwatchSet ss = S7SetHelper.createS7SwatchSet(Resource parent, String name, Map<String,Object> props)
//Adding asset to the swatch set
ss.add(Asset asset, Asset swatch)
;
Create a workflow process step with the above api which will create swatch set for every image upload in DAM. This is available in CQ 5.6.1
API - https://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/dam/commons/util/S7SetHelper.html
-Maruthi
Views
Replies
Total Likes