Search found 3 matches

by nghiank09
Tue Apr 06, 2021 2:31 pm
Forum: Help Me
Topic: Show all layers of all files in the folder
Replies: 4
Views: 2290

Re: Show all layers of all files in the folder

Kukurykus wrote: Tue Apr 06, 2021 2:19 pm Remove colon and change backslashes to slashes, plus add one at beginning of path.
I keep the colon and change backslashes to slashes, the code works very effectively. You are awesome.
by nghiank09
Tue Apr 06, 2021 2:14 pm
Forum: Help Me
Topic: Show all layers of all files in the folder
Replies: 4
Views: 2290

Re: Show all layers of all files in the folder

sTT = stringIDToTypeID, fls = File('~/desktop/Folder/') .getFiles('*.psd'), dsc = new ActionDescriptor(); while(fls.length) { if ((lrs = (actvDcmnt = open(fls.shift())).layers).length > 1 || !lrs[0].isBackgroundLayer) runMenuItem(sTT('selectAllLayers')), (ref = new ActionReference()).putEnumerated ...
by nghiank09
Tue Apr 06, 2021 12:13 pm
Forum: Help Me
Topic: Show all layers of all files in the folder
Replies: 4
Views: 2290

Show all layers of all files in the folder

Hello, I'm trying to show all layers of all files(.psd) in the folder. The process will be like that: Step 1: Open the first file Step 2: Select all layer of this file Step 3: Show all layer of this file Step 4: Save and close Step 5: Open the second file Step 6: Select all layer of this file Step 7...