Skip to content

Instantly share code, notes, and snippets.

View kkotaro0111's full-sized avatar

Kotaro Kawashima kkotaro0111

View GitHub Profile
@kkotaro0111
kkotaro0111 / d.js
Last active October 13, 2015 01:18 — forked from partynight12th/d.js
とりあえず動かしておきたいJS
var djs = {};//Default setting JavaScript
djs.w = window;
djs.d = djs.w.document;
//IEでconsole未定義エラーを出さないようにする。
(function(win){
if(!win.console){
win.console = {};
}
@kkotaro0111
kkotaro0111 / illstrator_fontlist.jsx
Last active December 16, 2015 03:30 — forked from partynight12th/illstrator_fontlist.jsx
任意の文字列を、そのマシーンにインストールされてる全てのフォントで書きだすExtend Script for Illustrator。 キャンパス上に設置したテキストオブジェクトを1つ選択した状態で、このJSXをドラッグ・アンド・ドロップすれば、書き出される。 ただし、フォントがたくさん入っていると、超絶時間とマシンリソースを消費するので、気をつけること。
var textFrame = activeDocument.selection[0];
if(textFrame && textFrame.characters && textFrame.characters.length > 0){
var textContent = textFrame.contents;
var fonts = app.textFonts;
var len = fonts.length;
var width = 270;
var height = 24;