top of page
- API -

beforeRecPath,afterRecPath = reaper.AZ_SetProjectInfoRecAddPath(projID,addRecPath)

- API Detail-

▼Input value

projID(ReaProjct): Project ID

path(string): Folder path *Lua can be written in Japanese as is


▼Output value

retval(boolean): Success or failure of API execution

beforePath(string): Path before change

afterPaht(string): Path after change

- SCRIPT -

package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"

require("reaper_AZSTOKE_SILVER")


function Msg(param)

reaper.ShowConsoleMsg(tostring(param).."\n")

end


beforeRecPath,afterRecPath = reaper.AZ_SetProjectInfoRecAddPath(0,"AZSTOKE")

Msg(beforeRecPath)

Msg(afterRecPath)

PROJECT

AZ_SetProjectInfoRecAddPath

Supported versions:

1.0.3

onwards

Add to the recording path in the project settings

bottom of page