top of page

import sys

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

from AZSTOKE_BRONZE_python import *


def Msg(parm):

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


retval, _, _, _, frame = AZ_GetSelectedTrackMediaStartTimeFrame(0, 0, 0, 0)

Msg(frame)

- SCRIPT -

retval,projID,selectTrackID,,trackItemID,frame = AZ_GetSelectedTrackMediaStartTimeFrame(projID,selectTrackID,selectItemID,frameOut)

- API -

対応バージョン:

以降

MEDIA

AZ_GetSelectedTrackMediaStartTimeFrame

Get the start frame of the specified media in the specified selected track

- API Detail-

▼Input value

  • projID(ReaProject): Project ID

  • selectTrackID(int): Selected track ID

  • selectItemID(int): Selected media ID

  • frameOut(int): Any number (0 is OK)

▼Output value

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

  • projID (ReaProject): The same as the input will be output with "_"

  • selectTrackID(int): The same as the input will be handled with "_" as the output

  • selectItemID (int): The same as the input will be handled with "_" as the output

  • frameOut(int) : frame value

bottom of page