scrnshot.lua

-- take a screenshot every time a key is pressed

scrnshot_menu = menu.new
{
    name    = "Screenshot on Keypress",
    choices = { "OFF", "ON" },
    value   = "OFF",
    help    = "Take a screenshot every time a key is pressed",

}

-- fixme: this slows down the GUI a lot
-- also takes many unnecessary screenshots
-- (for example, on press/unpress events)
function event.keypress(key)
    if key ~= 0 and scrnshot_menu.value == "ON" then
        display.screenshot()
    end
end
generated by LDoc 1.4.3 Last updated 2016-04-23 15:53:20