View Single Post
Old 02-22-2018, 08:10 AM   #12
spk77
Human being with feelings
 
Join Date: Aug 2012
Location: Finland
Posts: 2,668
Default

Glad to see some interest here, thanks!
Quote:
Originally Posted by Sexan View Post
Omg, I won't even use reaper without this....
Bugs or not implemented yet:
1. You can add same folders again and again, maybe some check to only add new ones?
That's a good suggestion. Also, new tracks that are added to a tagged folder should stay visible.
(I don't know what should happen when user changes folder state from "parent" to something else )


Quote:
Originally Posted by Sexan View Post
FR:

can it vertically align little sooner?
I'll add some layout options.



This script doesn't work correctly with non-English language packs (I assume). The buttons and REAPER's TCP/MCP are updated when the script "sees" certain words in last undo point name:

Code:
  local proj_change_count = GetProjectStateChangeCount(0)
  if proj_change_count > last_proj_change_count then
    local last_action = reaper.Undo_CanUndo2(0)
    -- try to catch changes in track list
    if last_action:find("track") and not last_action:find("selection") then
      on_track_list_change(last_action)
    end
    last_proj_change_count = proj_change_count
  end
spk77 is offline   Reply With Quote