Copy link to clipboard
Copied
What it says in the subject!
Thanks
Quit Photoshop.
Backup the ContactSheetII.jsx file found in your Photoshop application Presets/Scripts directory.
Edit the ContactSheetII.jsx file in a plain text editor (if using Apple TextEdit, ensure that it is plain text mode and not rich text).
Edit line 6587 which should read as:
self.noExtensions = false;
Change the boolean value:
self.noExtensions = true;
Restart Photoshop and enjoy!
A full-featured advanced Contact Sheet X can be found
...Copy link to clipboard
Copied
If you use Bridge > Output tab or workspace, you can omit the file extension by unchecking the option Include File Extension in the Document section of the Output panel.
Copy link to clipboard
Copied
Quit Photoshop.
Backup the ContactSheetII.jsx file found in your Photoshop application Presets/Scripts directory.
Edit the ContactSheetII.jsx file in a plain text editor (if using Apple TextEdit, ensure that it is plain text mode and not rich text).
Edit line 6587 which should read as:
self.noExtensions = false;
Change the boolean value:
self.noExtensions = true;
Restart Photoshop and enjoy!
A full-featured advanced Contact Sheet X can be found here:
https://sourceforge.net/projects/ps-scripts/files/ContactSheetX/v2.2/CSX-2_2.zip/download
Copy link to clipboard
Copied
An alternative to editing the ContactSheetII.jsx file is to run a script to remove filename extensions from all text layers:
#target photoshop
// Remove filename extension from all text layers
for (var i = 0; i < app.documents.length; i++) {
app.activeDocument = app.documents[i];
var doc = app.activeDocument;
for (var j = 0; j < doc.layers.length; j++) {
try {
doc.activeLayer = doc.layers[j];
if (app.activeDocument.activeLayer.kind == LayerKind.TEXT) {
doc.activeLayer.textItem.contents = doc.activeLayer.textItem.contents.replace(/\.[^\.]+$/, '');
}
} catch (e) {}
}
}
https://prepression.blogspot.com/2017/11/downloading-and-installing-adobe-scripts.html
Find more inspiration, events, and resources on the new Adobe Community
Explore Now