aboutsummaryrefslogtreecommitdiffstats
path: root/append-comment.lua
blob: d308444d615ee9fb84f3516347ea664ebf73e8de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
script_name = "Append Comment"
script_description = "{ts do all the work pls kthxbye}"
script_author = "garret"
script_version = "1.1.1"

function main(sub, sel)
    dialog_config=
    {
        {
            class="label",
            x=0,y=0,width=1,height=1,
            label="Comment:"
        },
        {
            class="edit",name="msg",
            x=0,y=1,width=1,height=2,
            value=""
        }
    }
    button, results = aegisub.dialog.display(dialog_config)
    if button ~= false then
        for _, i in ipairs(sel) do
            local line = sub[i]
            line.text = line.text.." {"..results.msg.."}"
            sub[i] = line
        end
    else
        aegisub.cancel()
    end
end

aegisub.register_macro(script_name, script_description, main)