top of page
- API -
colorNum,rNum,gNum,bNum = reaper.AZ_GetTrackIdColor(projID,trackID)
- API Detail -
▼入力値
projID(ReaProjct):プロジェクトID
trackID(integer):トラックID
▼出力値
color(integer):トラックカラー値
r(integer):赤の値
g(integer):緑の値
b(integer):青の値
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_SILVER")
colorNum,rNum,gNum,bNum = reaper.AZ_GetTrackIdColor(0,1)
Msg(colorNum)
Msg(rNum)
Msg(gNum)
Msg(bNum)
TRACK
AZ_GetTrackIdColor
対応バージョン:
1.0.0
以降
指定トラックIDのカラー値を取得
bottom of page