From d5eb7c02fe0fc9998d6dbb651f5069d6f33e4bed Mon Sep 17 00:00:00 2001 From: garret Date: Wed, 21 Jul 2021 22:48:09 +0100 Subject: new ones that do stuff with comments each script is a different type of comment tho --- append-comment.lua | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 append-comment.lua (limited to 'append-comment.lua') diff --git a/append-comment.lua b/append-comment.lua new file mode 100644 index 0000000..9f62ed2 --- /dev/null +++ b/append-comment.lua @@ -0,0 +1,49 @@ +script_name = "Append Comment" +script_description = "ts do all the work pls kthxbye" +script_author = "garret" +script_version = "1.0.0" + +inspect = require 'inspect' +function log(level, msg) + if type(level) ~= "number" then + msg = level + level = 4 + end + if type(msg) == "table" then + msg = inspect(msg) + end + aegisub.log(level, tostring(msg).."\n") +end + +function clean(msg) +msg = msg:gsub("\n","\\N") +end + +function main(sub, sel) + dialog_config= + { + { + class="label", + x=0,y=0,width=1,height=1, + label="Comment:" + }, + { + class="textbox",name="msg", + x=0,y=1,width=1,height=2, + value="" + } + } + button, results = aegisub.dialog.display(dialog_config) + if button ~= false then + msg = results.msg + for _, i in ipairs(sel) do + local line = sub[i] + line.text = line.text.." {"..msg.."}" + sub[i] = line + end + else + aegisub.cancel() + end +end + +aegisub.register_macro(script_name, script_description, main) -- cgit v1.2.3-70-g09d2