Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I'm open to suggestions outside of Photoshop. Thanks
//Renames all files in selected folder - removes first three characters
var inputFolder = Folder.selectDialog("Select a folder of documents to process");
var myFile = "";
var fileList = inputFolder.getFiles("*.tif");
for ( var i = 0; i < fileList.length; i++ ) {
myFile = fileList[i].name;
fileList[i].rename(myFile.substr(3));
}