Add files to recent files of PS
I use the following script to open the files I need from the my specific folder:
var dir = Folder('F:/Photos');
var files = dir.openDlg('This is always the same folder?','',true);
if( files !=null ){
for(var f = 0;f< files.length;f++){
// really should check that the file object is an image file
// that Photoshop can open
open(files[f]);
}
}
The problem is that after opening in this way (by script above), file does not appear in the list of recent files of PS.
How can you fix this, is there a solution?
I’d appreciate any help.
