a keyboard hotkey I can't assign, please help

82 views
Skip to first unread message

robisme (Olivier R)

unread,
Sep 23, 2017, 3:20:55 AM9/23/17
to MyLifeOrganized
Hello,

I'm not able to assign the hotkey ctrl+down because it causes conflict with "select next task".
But I can'se this next task selectionshortcut.
I really want to assign ctrl+down, because it is the same I use with a mindmap application and I'd like to have the same habits.

Is there a way?

Olivier

Elizabeth Lindsay

unread,
Sep 24, 2017, 11:25:39 AM9/24/17
to MyLifeOrganized
That sounds like a hidden hotkey.  Maybe the development team can shed some light.

grizz

unread,
Sep 26, 2017, 6:19:22 AM9/26/17
to MyLifeOrganized

Hi,

You can use https://autohotkey.com/ and overrite any shortcut.

Regards,
― grizz 

robisme (Olivier R)

unread,
Sep 26, 2017, 8:14:20 AM9/26/17
to MyLifeOrganized
Hi,
Thank you for the idea.
I've just installed autohotkey. I face the impression of carrying a hammer in order to kill a fly.

To achieve my purpose, should the script be:

^Down::
Insert
Return

It doesn't work, and I don't really understand the user manual of autohotkey, as english is not my native language.

Could you please help me, just writing the code I should use to replace ctrl+down arrow by a simple Insert key ? (ie use ctrl+Down to ad a new task).

Thank you
Olivier

pottster

unread,
Sep 26, 2017, 12:55:55 PM9/26/17
to MyLifeOrganized
Hi Olivier,

Your AutoHotkey isn't quite right but there is a more basic issue here. Normally, AutoHotkey would allow you to remap this shortcut but I think that Ctrl+Down is hard coded in MLO. It may be possible to change in the registry but you'd have to ask support. I suggest you contact support for options. Post again if you make progress and need an AutoHotkey script.

robisme (Olivier R)

unread,
Sep 26, 2017, 12:59:57 PM9/26/17
to MyLifeOrganized
That was my point at the begening: please dev, unlock this hardoded shortcut.

grizz

unread,
Sep 27, 2017, 7:58:21 AM9/27/17
to MyLifeOrganized
AHK is more like swiss army knife, not hammer ;)

And 

^Down::
Send {Insert}
Return

Or better to work only in MLO - use Window spy to find MLO class name name in place of Chrome

#IfWinActive ahk_class Chrome
^Down::
         Send {Insert}
         Return
Return
#if

pottster

unread,
Sep 27, 2017, 1:44:42 PM9/27/17
to MyLifeOrganized
Unfortunately, as I posted before, this script should work but doesn't because MLO has a bind on the Ctr+Down combination.

grizz

unread,
Sep 28, 2017, 3:39:51 AM9/28/17
to MyLifeOrganized
It works. Tested. Don't forget to reload script after save.



#IfWinActive ahk_exe mlo.exe
^Down::
         Send {Insert}
         Return
Return 
#if

robisme (Olivier R)

unread,
Sep 28, 2017, 6:57:55 AM9/28/17
to MyLifeOrganized
Thank you

pottster

unread,
Sep 28, 2017, 7:06:06 AM9/28/17
to MyLifeOrganized
Grizz is right that script will work! Really odd - it didn't work for me yesterday, ah well.

By the way, you only need the first four lines - presume the last the two lines were just an editing error.

#IfWinActive ahk_exe mlo.exe
^Down::
         Send {Insert}
         Return

On Thursday, 28 September 2017 11:57:55 UTC+1, robisme (Olivier R) wrote:
Thank you

robisme (Olivier R)

unread,
Sep 30, 2017, 4:07:29 PM9/30/17
to MyLifeOrganized
I'm sorry but it doesn't work.
Please Andrey, free the hardcoded shortcut.
Olivier
Reply all
Reply to author
Forward
0 new messages