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,setPos,posOut = AZ_SetPlayCursorPosition(0,0,2,0)

Msg(posOut)

- SCRIPT -

projID,startEndType,setPos,posOut = AZ_SetPlayCursorPosition(projID,startEndType,setPos,posOut)

- API -

ID

CURSOR

AZ_SetPlayCursorPosition

対応バージョン:

2.1.0

以降

Set the playback cursor position (seconds)

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

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

  • setPos(double) : Sets the cursor position (seconds)

  • posOut (double) : 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

  • setPos(double) : The input is the same as the output

  • posOut(double): Cursor position (seconds)

bottom of page