https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 6f1024a4e10589632694e7e4535363f1efe0a240 authored by danne on 29 November 2016, 01:36:15 UTC
If condition only for crop mode hack
Tip revision: 6f1024a
hello.lua
-- A very simple script.

function main()
    menu.close()
    console.show()
    print "Hello, World!"
    print "Press any key to exit."
    key.wait()
    console.hide()
end

keymenu = menu.new
{
    name   = "Hello, World!",
    help   = "Prints 'Hello World' on the console",
    select = function(this) task.create(main) end,
}

back to top