From 180843f9bd28b191c7404245ba0a121107992511 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 23 Feb 2020 20:48:02 +0100 Subject: Also move Lua scripts to share subfolder --- share/scripts/new_playlist.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 share/scripts/new_playlist.lua (limited to 'share/scripts/new_playlist.lua') diff --git a/share/scripts/new_playlist.lua b/share/scripts/new_playlist.lua new file mode 100644 index 0000000000..54563cd6a5 --- /dev/null +++ b/share/scripts/new_playlist.lua @@ -0,0 +1,17 @@ +ardour { + ["type"] = "EditorAction", + name = "New Playlist", + license = "MIT", + author = "Ardour Lua Taskforce", + description = [[Prompts and builds a new playlist for every track in the session.]] +} + +function factory () return function () + + for r in Session:get_tracks():iter() do + local rtav = Editor:rtav_from_route(r) -- lookup RTAV + Editor:new_playlists(rtav:to_timeaxisview()) + end + +collectgarbage() +end end -- cgit v1.2.3