Jump to content

Ágúst Valgarð Ólafsson

Member Since 15 Jun 2015
Offline Last Active Jan 11 2020 10:01 AM
-----

Posts I've Made

In Topic: Ctrl + L hotkey Not Working Correctly

04 March 2018 - 06:47 AM

Update: I just now upgraded E-Sword to version 11.1.0 - had not noticed there was a new version out. Previously I had version 11.0.6 installed.

With the upgrade, the keyboard shortcut discussed above works again. I ended up removing me workaround :-)


In Topic: Ctrl + L hotkey Not Working Correctly

04 March 2018 - 04:04 AM

I found a workaround that works great for me and my PC.

 

1. Download and install autohotkey.com

It is a small program that runs in the background and enables you to create scripts that you activate via keyboard shortcuts of your choice.

 

2. In my case, autohotkey created a .ahk file under "My documents" that I could edit to add new scripts. If it does not, refer to the get started tutorial for autohotkey.

In the script file (.ahk file) - add the following script:

 

^l::

MouseMove, 20, 60 ; 
MouseClick left
return

 

This script captures the ctrl + L  shortcut (^l is a shortcut for that), moves the cursor to the top left (over the E-sword textbox) and clicks the mouse - just like the original E-sword shortcut did. This assumes that you have E-sword window maximized on your screen.

 

Unless you have instructed AutoHotKey to run with windows start, you may need to launch it for the script to work. Once AutoHotKey is running, it has an icon in the system tray.


In Topic: Ctrl + L hotkey Not Working Correctly

01 March 2018 - 11:40 PM

I have the same experience. Have used this hotkey alot - but seems with a new update on windows 10, it stopped working except in the cases you describe. Other hotkeys, like next chapter, seem to work consistently. Looks like this is something Rick, the author of E-sword, has to address.