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
| javascript: (function(){ | |
| var d = window.document; | |
| function loaded(){ | |
| var b = d.createElement('div'); | |
| var q = d.createElement('div'); | |
| $(b).css({position:'fixed',width:'100%',height:'100%',background:'#FFFFFF',zIndex:0x7FFFFFFF,top:0,left:0}).on('click', hide); | |
| $(q).qrcode(location.href).css({zIndex:0x7FFFFFFF,position:'fixed',left:'50%',top:'50%',marginLeft:'-128px',marginTop:'-128px'}).on('click', hide); | |
| d.body.appendChild(b); | |
| d.body.appendChild(q); | |
| function hide(){$(b).hide();$(q).hide();} |
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
| /** | |
| * Expand Timeline | |
| */ | |
| var _doc = fl.getDocumentDOM(); | |
| var _tl = _doc.getTimeline(); | |
| var _rate = parseFloat(prompt("Input rate.", "2")) | |
| if(!isNaN(_rate) && _rate != 1 && _rate > 0){ | |
| main(); | |
| } |
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
| /** | |
| * 簡易スプライトシート生成.jsx | |
| * @author sacrifs | |
| */ | |
| var _doc = activeDocument, | |
| _layers = [], | |
| main = function(){ | |
| preferences.rulerUnits = Units.PIXELS; | |
| var dialog = createDialog(); | |
| dialog.btnOk.onClick = function(){ |
OlderNewer