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/_remember_file.lua | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 share/scripts/_remember_file.lua (limited to 'share/scripts/_remember_file.lua') diff --git a/share/scripts/_remember_file.lua b/share/scripts/_remember_file.lua new file mode 100644 index 0000000000..7a79fc861b --- /dev/null +++ b/share/scripts/_remember_file.lua @@ -0,0 +1,37 @@ +ardour { + ["type"] = "EditorAction", + name = "File Name Test", + author = "Ardour Lua Taskforce", + description = [[Example Plugin to show to to select a file and remember the most recently used file.]] +} + +function factory () + local file_name_testscript_last_filename -- this acts as "global" variable, use a unique name + return function () + print (file_name_testscript_last_filename) -- debug + + --set filename to most recently used, fall back to use a default + local fn = file_name_testscript_last_filename or ARDOUR.LuaAPI.build_filename (Session:path (), Session:name () .. ".ardour") + + -- prepare a dialog + local dialog_options = { + { type = "file", key = "file", title = "Select a File", path = fn } + } + + -- show dialog + local od = LuaDialog.Dialog ("title", dialog_options) + local rv = od:run() + + if rv then + -- remember most recently selected file + file_name_testscript_last_filename = rv['file'] + LuaDialog.Message ("title", "set path to " .. file_name_testscript_last_filename, LuaDialog.MessageType.Info, LuaDialog.ButtonType.Close):run() + else + -- unset most recently used filename on dialog "cancel" + file_name_testscript_last_filename = nil + end + + od = nil + collectgarbage () + end +end -- cgit v1.2.3