Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name バンブラP整理番号表示
// @namespace http://gbm.yh.land.to
// @description バンブラP最新追加曲リストに楽曲の整理番号を表示させます。
// @include http://bandbros-p.nintendo.co.jp/release/newRelease/
// @version 1.0
// ==/UserScript==
var list = document.getElementsByTagName("table")[0];
var t;
@swifee
swifee / Movie2CombinedImage_forAE.jsx
Created May 10, 2012 14:20
AfterEffectsでiPhone用アニメーションイメージ生成
//created by @swifee
#target "aftereffects"
var activeItem = app.project.activeItem;
if ((activeItem == null) || !(activeItem instanceof CompItem)) {
alert("コンポジションを選択した状態でスクリプトを実行して下さい。");
}else{
var comp_x = activeItem.width;
var comp_y = activeItem.height;
var comp_fDur = activeItem.frameDuration;