2016-02-23 09:44:41 -05:00
|
|
|
ardour {
|
|
|
|
["type"] = "EditorAction",
|
|
|
|
name = "Rewind",
|
2016-07-12 09:21:23 -04:00
|
|
|
author = "Ardour Lua Task Force",
|
|
|
|
description = [[An Example Ardour Editor Action Script.]]
|
2016-02-23 09:44:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function factory (params)
|
|
|
|
return function ()
|
|
|
|
Session:goto_start()
|
|
|
|
end
|
|
|
|
end
|