Open folder image file in photoshop using java script with layer wise.
Hi to all,
Dear team,
I am Rakesh from India i have faced an issue with my script, I just want to open a folder image in photoshop with layer wise.
It means suppose i have 2 image file in a folder named "ABC_client.tiff" & "ABC_final.tiff", I want to open both file in single photoshop frame with layered.
I have code a script but it open both file seperately.
So we need a support or help, please update or edit my script.
var dir = Folder('/Users/user/Desktop');
var files = dir.openDlg('This is always the same folder?','',true);
if( files !=null ){
for(var f = 0;f< files.length;f++){
open(files
}
}
Thanks
Rakesh
