top of page

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)

- SCRIPT -

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

- API -

ID

PROJECT

reaper.AZ_SetProjectInfoRecAddPath

対応バージョン:

1.0.0

以降

Add to the recording path in the project settings

- 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

bottom of page