Doesn't work in Edge, sorry. But you can vote for it here - your feedback does matter! Still needs the layout.css.clip-path-shapes.enabled to be set to true in about:config (it's false by default) in order to work in Firefox. Not for long though. One more month and that flag will be true by default in the next Firefox version!🎈🎉
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
| /** css carousel **/ | |
| @keyframes slidy { | |
| 0% { left: 0%; } | |
| 11% { left: 0%; } | |
| 22% { left: -100%; } | |
| 33% { left: -100%; } | |
| 44% { left: -200%; } | |
| 55% { left: -200%; } | |
| 66% { left: -300%; } | |
| 77% { left: -300%; } |
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
| <?php | |
| ### | |
| # Video Clips | |
| # | |
| # PURPOSE | |
| # Displays a given video clip. | |
| # | |
| ### |
Doesn't work in Edge, sorry. But you can vote for it here - your feedback does matter! Still needs the layout.css.clip-path-shapes.enabled to be set to true in about:config (it's false by default) in order to work in Firefox. Not for long though. One more month and that flag will be true by default in the next Firefox version!🎈🎉
Doesn't work in Edge, sorry. But you can vote for it here - your feedback does matter! Still needs the layout.css.clip-path-shapes.enabled to be set to true in about:config (it's false by default) in order to work in Firefox. Not for long though. One more month and that flag will be true by default in the next Firefox version!🎈🎉
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
| data:text/html;charset=utf-8, <title>Writability</title><body OnLoad='document.body.focus();' contenteditable style="font-size:21px;line-height:1.6;font-family:'Chaparral Pro',Georgia;max-width:21em;margin:0 auto;padding:3rem;background-color:rgb(233,233,225);color:rgb(68,68,68);" spellcheck="false"> |
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
| var layerNum = app.activeDocument.layers.length; | |
| var a = []; | |
| for (var i = 0; i < layerNum; i++) { | |
| a[i] = '"' + app.activeDocument.layers[i].name + '"'; | |
| } | |
| prompt("Layers Names:", a); |
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
| // change color mode of document in photoshop | |
| // http://ps-scripts.com/bb/viewtopic.php?f=9&t=3158&start=0 | |
| var doc = activeDocument; | |
| var ext= doc.name.toLowerCase().match(/[^\.]+$/); | |
| if(doc.mode !=DocumentMode.CMYK && ext == "tif"){ | |
| doc.changeMode(ChangeMode.CMYK); |
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
| // Suspend history logging so the grid can run as one history state | |
| // | |
| // p - params for renderGuides(). Not used in this method. | |
| // | |
| // Returns void | |
| function execGuideGuide(p){ | |
| app.activeDocument.suspendHistory("GuideGuide!", "renderGuides(p)") | |
| } |
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
| //This will be the direcotry of the images | |
| var workFolder = Folder("Z:/Bermudez-Hernandez/Strains Project/Animals/C57_20/Prox1_NeuN/Slide2"); | |
| var folders = workFolder.getFiles(); | |
| runphotomergeFromScript = true; | |
| //runphotomergeFromScript = true; | |
| $.evalFile( "C:/Program Files/Adobe/Adobe Photoshop CC/Presets/Scripts/Photomerge.jsx") | |
| //photomerge.createPanorama( | |
| //fileList, displayDialog ); | |
| psdOpts = new PhotoshopSaveOptions(); |