top of page

import sys

sys.path.append(RPR_GetResourcePath() + r"/UserPlugins")

from AZSTOKE_SILVER_python import *


def Msg(parm):

    RPR_ShowConsoleMsg(str(parm) + "\n")


track = AZ_GetTrackItemSelect(0,0,0)

retval = AZ_SetTrackItemSolo(track,True)

Msg(retval)

- SCRIPT -

retval = AZ_SetTrackItemSolo(track,soloType)

- API -

対応バージョン:

1.0.0

以降

TRACK

AZ_SetTrackItemSolo

Soloing a specific track item

- API Detail-

▼Input value

  • track(MediaTrack): track item

  • soloType(boolean): True/solo on False/solo off

▼Output value

  • retval(bool): Whether the API execution was successful or not

bottom of page