Author Topic: Picture Viewer go to next/previous image  (Read 6584 times)

SDV

  • Newbie
  • *
  • Posts: 1
    • View Profile
Picture Viewer go to next/previous image
« on: February 17, 2019, 10:31:24 »
Hello,
my suggestion is to add some feature to quickly move to the next or previous image in the Picture Viewer mode.
It would be useful for example on MTP-devices while thumbnails are not visible and you need to look through your photos.

At the moment I've got a simple AutoHotkey script for this purpose:

Code: newbielink:javascript:void(0); [nonactive]
; Ctrl-Alt-Up shortcut for Multi Commander file viewing
^!up::
   send {esc}
   send {up}
   send {F1}
return

; Ctrl-Alt-Down shortcut for Multi Commander file viewing
^!down::
   send {esc}
   send {down}
   send {F1}
return

It contains two shortcuts: "Ctrl+Alt+Up" and "Ctrl+Alt+Down", each of them causes three actions:
 - press the Esc button to close previous viewer;
 - go to the next/previous file in the list by pressing up/down arrow;
 - press the F1 button to view the current file.

Mathias (Author)

  • Administrator
  • VIP Member
  • *****
  • Posts: 4271
    • View Profile
    • Multi Commander
Re: Picture Viewer go to next/previous image
« Reply #1 on: February 17, 2019, 15:07:37 »
If you select files before viewing them, then all selected files will be sent to the viewer and you can move to next/prev with space/backspace