Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Scene7 Automatic Swatch Set Creation

Avatar

Level 1

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

1 Accepted Solution

Avatar

Correct answer by
Former Community Member

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

View solution in original post

1 Reply

Avatar

Correct answer by
Former Community Member

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