This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #target photoshop | |
| var currentDoc = app.activeDocument; | |
| for ( var i = 0; i < currentDoc.layers.length; i++ ) { | |
| var layer = currentDoc.layers[i]; | |
| if( layer.kind === LayerKind.HUESATURATION ) | |
| { | |
| layer.visible = layer.visible ? false : true; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* FUNCS */ | |
| function move(l,x,y) { | |
| var Position = l.bounds; | |
| Position[0] = x - Position[0]; | |
| Position[1] = y - Position[1]; | |
| l.translate(-Position[0],-Position[1]); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #target "photoshop" | |
| var outputWidth = 1024; | |
| var inputFolder = Folder.selectDialog("Input folder"); | |
| var outputFolder = Folder.selectDialog("Output folder"); | |
| if (inputFolder != null && outputFolder != null) { | |
| var files = inputFolder.getFiles("*.psd"); | |
| for (var i = 0; i < files.length; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // MultiExporter.jsx | |
| // Version 0.1 | |
| // Version 0.2 Adds PNG and EPS exports | |
| // Version 0.3 Adds support for exporting at different resolutions | |
| // Version 0.4 Adds support for SVG, changed EPS behaviour to minimise output filesize | |
| // Version 0.5 Fixed cropping issues | |
| // Version 0.6 Added inner padding mode to prevent circular bounds clipping | |
| // | |
| // Copyright 2013 Tom Byrne | |
| // Comments or suggestions to tom@tbyrne.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ChangeColor.jsx | |
| // | |
| // This photoshop script finds all shape and solid fill layers that match the color | |
| // of the currently selected shape/fill layer and changes their color to the | |
| // foreground color. | |
| // | |
| // Tested on Adobe Photoshop CS4 (Mac) | |
| // enable double clicking from the Macintosh Finder or the Windows Explorer | |
| #target photoshop |
OlderNewer