foobar2000

このエントリーをはてなブックマークに追加
656名無しさん@お腹いっぱい。
本家フォーラムより
スクロールする書式
////scroller setup

//text to scroll
$puts(scrolltext,%artist% - %title% // )

//length of scroll
$puts(length,10)

////scroller

//check if length greater than string. if so, do not scroll.
$ifgreater($get(length),$len($get(scrolltext)),$get(scrolltext),

//calc char to start from
$puts(from,$add($mod(%_time_elapsed_seconds%,$len($get(scrolltext))),1))

//calc char to end with
$puts(to,$add($mod(%_time_elapsed_seconds%,$len($get(scrolltext))),$get(length)))

//display scroller
$substr($get(scrolltext),$get(from),$get(to))$ifgreater($add($get(to),1),$len($get(scrolltext)),$substr($get(scrolltext),1,$sub($get(to),$len($get(scrolltext)))),))