Search found 3 matches

by e_samurai
Thu Apr 30, 2020 1:31 pm
Forum: Help Me
Topic: Batch Creation PSD files from images
Replies: 4
Views: 3848

Re: Batch Creation PSD files from images

Wow, seems that I missed that each folder is saved into a separate PSD! Brilliant. Thanks Jeff and thanks OP for bringing that up in the first place!
by e_samurai
Wed Apr 29, 2020 3:35 pm
Forum: Help Me
Topic: Batch Creation PSD files from images
Replies: 4
Views: 3848

Re: Batch Creation PSD files from images

Try this... #target photoshop; app.bringToFront(); main(); function main(){ try{ var folders =[]; var topLevel = Folder.selectDialog("Please select top level folder"); folders = FindAllFolders(topLevel, folders); folders.unshift(topLevel); for(var f in folders){ var fileList =folders[f].g...
by e_samurai
Tue Apr 28, 2020 3:22 pm
Forum: Help Me
Topic: Batch Creation PSD files from images
Replies: 4
Views: 3848

Re: Batch Creation PSD files from images

I have this exact situation! I tried searching online and actually found this page here: But whenever I tried running it in Photoshop (CS6 and CC2015) it throws an error of TypeError: Undefined is not an object II'm pretty novice with JS myself too, so I actually don't know how to handle this and wo...