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
| (* | |
| Export All Safari Tabs in All Open Windows to a Markdown File | |
| July 13, 2015 | |
| // SCRIPT PAGE | |
| http://hegde.me/urlsafari | |
| // ORIGINAL SCRIPT ON WHICH THIS SCRIPT IS BUILT | |
| http://veritrope.com/code/export-all-safari-tabs-to-a-text-file |
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 | |
| // EXPORT PNG 24 TRANSPARENT | |
| // Function to launch the "Layer > Rasterize > with style" | |
| // Produced with the JavaScript listener | |
| function raterizeLayerStyle(){ | |
| var idrasterizeLayer = stringIDToTypeID( "rasterizeLayer" ); | |
| var desc5 = new ActionDescriptor(); | |
| var idnull = charIDToTypeID( "null" ); |
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 | |
| main(); | |
| function main() { | |
| if(!documents.length) return; | |
| var doc = activeDocument; | |
| var oldPath = activeDocument.path; | |
| var Name = app.activeDocument.name.replace(/\.[^\.]+$/, ''); | |
| dupLayers(); |