View Single Post
Old 01-11-2020, 08:29 PM   #7
Tonegrown
Human being with feelings
 
Join Date: Jun 2015
Posts: 24
Default

Quote:
Originally Posted by brk303 View Post
Didn't yet think about what I want to happen at the end of song/region.
Marker actions for specifying transport stop. put !1026 in marker name and reaper will stop at the marker.


I address songs by their location on the timeline. I used to do markers but now prefer a simple lua script created in actions window. I don't know who the original author may have been, but i would have found this on reaper forums. msr = your measure number where the song starts. I have close to 100 songs in my session and it works very well. (be careful with time signatures as changing them per song may move measures #s around.)

local msr = 1
local moveview = 1 -- set 1 if you want to move view -- set 0 = don't move view
----------------------------------------------------
local msrcalc = msr-1
local time = reaper.TimeMap_GetMeasureInfo(0, msrcalc)
reaper.SetEditCurPos2(0, time, moveview, 0)
Tonegrown is offline   Reply With Quote