This file contains 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
// ==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; |
This file contains 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
//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; |