top of page
function Msg(param)
reaper.ShowConsoleMsg(tostring((param)).."\n")
end
retval,cursorFrame = reaper.AZ_SetPlayCursorPositionFrame(0,0,100)
Msg(cursorFrame)
- SCRIPT -
retval,cursorFrame = reaper.AZ_SetPlayCursorPositionFrame(projID,startEndType,setFrame)
- API -
ID
CURSOR
reaper.AZ_SetPlayCursorPositionFrame
対応バージョン:
2.1.0
以降
Set the playback cursor position (frame)
LUA
- 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)
bottom of page