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")

    

projID,startEndType,setFrame,frameOut = AZ_SetPlayCursorPositionFrame(0,0,100,0)

Msg(frameOut)

- SCRIPT -

projID,startEndType,setPos, frameOut= AZ_SetPlayCursorPositionFrame(projID,startEndType,setPos, frameOut)

- API -

対応バージョン:

2.1.0

以降

CURSOR

AZ_SetPlayCursorPositionFrame

Set the playback cursor position (frame)

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

  • startEndType (integer): 0/time from 0 seconds 1/time from the last waveform point

  • setFrame(integer) : Sets the cursor position (frame)

  • frameOut (integer) : set to 0 for output

▼Output value

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

  • projID(integer) : The output is the same as the input

  • startEndType(integer) : The same as the input is output

  • setFrrame(integer) : The input is the same as the output

  • frameOut(integer): Cursor position (frame)

bottom of page