create_drum_tracks lua script by Phillip Smith

This commit is contained in:
Ben Loftis 2016-12-05 14:53:44 -06:00
parent fb257f1ed1
commit 6e2dfe65bf

View File

@ -0,0 +1,41 @@
ardour {
["type"] = "EditorAction",
name = "Create Drum Tracks",
author = "PSmith",
description = [[Creates 8 new tracks with representative names and colors.]]
}
names = {
"Kick",
"Snare",
"Hat",
"Fl Tom",
"OH L",
"OH R",
"Room 1",
"Room 2"
}
color = 0xff8800ff --orange
function factory (params)
return function ()
local i = 1
while names[i] do
Session:new_audio_track(1,2,RouteGroup,1,names[i],i,ARDOUR.TrackMode.Normal)
track = Session:route_by_name(names[i])
if (not track:isnil()) then
trkinfo = track:presentation_info_ptr ()
trkinfo:set_color (color)
end
i = i + 1
end --foreach track
end --function
end --factory