47 строки
752 B
Lua
47 строки
752 B
Lua
local keyboard = libs.keyboard;
|
|
|
|
--@help Start slide show
|
|
actions.show_start = function()
|
|
keyboard.stroke("F11");
|
|
end
|
|
|
|
|
|
--@help Rotate photo clockwise
|
|
actions.zoomnormal = function()
|
|
keyboard.text("/");
|
|
end
|
|
|
|
--@help Zoom out
|
|
actions.zoom_out = function()
|
|
keyboard.stroke("oem_minus");
|
|
end
|
|
|
|
--@help Zoom in
|
|
actions.zoom_in = function()
|
|
keyboard.text("+");
|
|
end
|
|
|
|
--@help End slide show
|
|
actions.one_by_one = function()
|
|
keyboard.text("*");
|
|
end
|
|
|
|
--@help Previous photo
|
|
actions.previous = function()
|
|
keyboard.stroke("left");
|
|
end
|
|
|
|
--@help Next photo
|
|
actions.next = function()
|
|
keyboard.stroke("right");
|
|
end
|
|
|
|
--@help Next photo
|
|
actions.up = function()
|
|
keyboard.stroke("up");
|
|
end
|
|
|
|
--@help Next photo
|
|
actions.down = function()
|
|
keyboard.stroke("down");
|
|
end |