top of page
- API -
beforeRecPath = reaper.AZ_SetProjectInfoRecPath(projID,recPath)
- 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
- SCRIPT -
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
require("reaper_AZSTOKE_SILVER")
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
beforeRecPath = reaper.AZ_SetProjectInfoRecPath(0,"AZSTOKE")
Msg(beforeRecPath)
PROJECT
AZ_SetProjectInfoRecPath
Supported versions:
1.0.3
onwards
Set the recording path in the project settings
bottom of page