top of page
- API -
cursorFrame = reaper.AZ_SetPlayCursorPositionFrame(projID,startEndType,setFrame)
- API Detail-
▼Input value
projID (ReaProject): Project ID
startEndType (integer): 0/time from 0 seconds 1/time from the last waveform point
setFrame (integer) : The frame to set the cursor to.
▼Output value
retval(bool): Whether the API execution was successful or not
cursorFrame(integer): Cursor position (frame)
- SCRIPT -
function Msg(param)
reaper.ShowConsoleMsg(tostring((param)).."\n")
end
cursorFrame = reaper.AZ_SetPlayCursorPositionFrame(0,0,100)
Msg(cursorFrame)
CURSOR
AZ_SetPlayCursorPositionFrame
Supported versions:
1.0.3
onwards
Set the playback cursor position (frame)
bottom of page