Menu

#42 Keyboard shortcut for enabling and disabling

none
closed
nobody
None
general
5
2016-03-24
2013-05-13
Uzair Asad
No

I would be handy if there was a keyboard shortcut set for enabling and disabling eViacam. This should shortcut would be shown under the "File" menu of the main window next to the "Enable/Disable" menu item.

Maybe something like Ctrl+Alt+E since it's not a common shortcut and is fairly easy to do with one hand.

Discussion

  • Uzair Asad

    Uzair Asad - 2013-05-15

    I forgot to mention that I'm asking this for the Windows version. The linux version has a hotkeys tab already.

     
  • Phil Iovino

    Phil Iovino - 2015-06-22

    A configurable enable/disable key would be great.

     
  • Cristian Avendaño

    This is neccesary. For the moment, I solved it with AutoHotKeys, pssuspend and a batch file.
    For some reason, it is necesary to use a shortcut(lnk) to the bat instead the .bat file.

    F9: Restart
    F8:Pause
    Alt+Z Center Screen
    Alt+X: Reading Mode (Middle Click of Mouse)

    PsSuspend https://technet.microsoft.com/en-us/sysinternals/bb897540.aspx
    AutoHotkey: http://www.autohotkey.com/

    This is the code if someone needs it:

    File: ResumeEviacam.bat

    pssuspend -r eviacam

    File: PauseEviacam.bat

    pssuspend eviacam

    File: Start-Stop.ahk

    F8::
    Run "D:\RSI\SuspendEviacam.lnk"
    Return

    F9::
    Run "D:\RSI\ResumeEviacam.lnk"
    Return

    !z::
    CoordMode, Mouse, Screen
    MouseMove, (A_ScreenWidth // 2), (A_ScreenHeight // 2)
    return

    !x::
    CoordMode, Mouse, Screen
    MouseMove, (A_ScreenWidth // 2), (A_ScreenHeight // 2)
    mouseclick, middle
    return

     
  • Cesar Mauri-Loba

    Added shortcuts (hotkeys) for Windows in commit ded669bf9af106dba5c011767ca72db6935f94aa
    Will be included in v2.1.0

     
  • Cesar Mauri-Loba

    • status: open --> closed
     

Log in to post a comment.