mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
* search by author: - "Ardour Team" for "ready to use" plugins - "Ardour Lua Task Force" = example plugins * search by Category - use "Example" for DSP plugins (except instruments)
12 lines
245 B
Lua
12 lines
245 B
Lua
ardour {
|
|
["type"] = "EditorAction",
|
|
name = "Rewind",
|
|
author = "Ardour Lua Task Force",
|
|
description = [[An Example Ardour Editor Action Script.]]
|
|
}
|
|
|
|
function factory (params)
|
|
return function ()
|
|
Session:goto_start()
|
|
end
|
|
end
|