top of page
- API -
soloType = reaper.AZ_GetTrackIdSolo(projID,trackID)
- API Detail -
▼入力値
projID(ReaProjct):プロジェクトID
trackID(integer):トラックID
▼出力値
soloType(boolean):true/ソロ false/ソロではない
- SIMPLE SCRIPT -
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
require("reaper_AZSTOKE_SILVER")
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
soloType = reaper.AZ_GetTrackIdSolo(0,0)
Msg(soloType)
soloType = reaper.AZ_GetTrackIdSolo(0,1)
Msg(soloType)
TRACK
AZ_GetTrackIdSolo
対応バージョン:
1.0.0
以降
指定トラックIDのソロ取得
bottom of page