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
| // https://github.com/keyboardface/photoshop-scripts | |
| /* | |
| * | |
| * Export All Text Layers | |
| * 1.1.4 | |
| * Pavel Ivanov | |
| * https://github.com/pivanov/photoshop-scripts | |
| * | |
| */ |
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
| // modified by WhereJuly | |
| // changed useDialog to false | |
| // replaced filePath with opened psd's full path | |
| /* | |
| * | |
| * TextExport 1.3 - by Bramus! - http://www.bram.us/ | |
| * text layer style export added by Max Glenister (@omgmog) http://www.omgmog.net | |
| * | |
| * v 1.x - ????.??.?? - UPD: HTML Output (?) |
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
| main(); | |
| function main(){ | |
| // Change the value between the parentheses below | |
| // into your desired percentage: | |
| setZoomLevel(300); | |
| // Leave the code below unchanged | |
| function setZoomLevel(zoom){ | |
| if(zoom < 1) zoom =1; |
NewerOlder