simple way to move task up/down, convert between task and subtask

168 views
Skip to first unread message

Ying Dong

unread,
Feb 2, 2021, 9:20:02 AM2/2/21
to MyLifeOrganized
Besides ctrl+M, is there any other keyboard operations to move task up and down (align vertically), conversion between task and subtask (align horizontally) within the same folder? Thanks

Wallace Gilbraith

unread,
Feb 2, 2021, 11:23:27 AM2/2/21
to mylifeo...@googlegroups.com

Shift-Alt-Up/ Down arrow

Shift-Alt-Left/ Right arrow

--
You received this message because you are subscribed to the Google Groups "MyLifeOrganized" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mylifeorganiz...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mylifeorganized/003d46a2-23c8-4123-b38f-0a1a2afba46dn%40googlegroups.com.

Ying Dong

unread,
Feb 2, 2021, 12:19:39 PM2/2/21
to MyLifeOrganized
Thanks a lot.
I don't see move up/down in the options/hotkeys so I guess it cant be modified, right? 

Stéph

unread,
Feb 2, 2021, 3:52:40 PM2/2/21
to MyLifeOrganized
That's correct: They're shortcut keys, not hotkeys.

Since I can't change it, to get myself used to that key combination, I try to set hotkeys which edit task properties to Shift-Alt..., while I use Ctrl-Alt for hotkeys for navigation around my outline.  Now it feels like the most appropriate keys for moving a task in my outline. 

Andrei, Win&Droid MLO user

unread,
Feb 3, 2021, 2:23:33 AM2/3/21
to MyLifeOrganized
here is a script which adds 2 custom key combinations for moving the task to the top of the list, and another one for moving the task to the bottom of the list.
To use it, install autohotkey from here: AutoHotkey
Then create a file with ahk extension, exemple:   myfirstscript.ahk
Paste into that file the following lines of code (only the green color text):
save the file myfirstscript.ahk.
Double click on it to execute it.
Then go to MLO. select a task at the bottom of the list. Press Alt Shift PageUp to move it to the top of the list.
Also, to move a task to the bottom, press the combination Alt Shift PageDown.
Happy testing!

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance force
#InstallKeybdHook
#HotkeyInterval 2000  
#MaxHotkeysPerInterval 300

SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

; key meaning:
; + Shift
; ! Alt
; ^ Ctrl
; # Win
; #IfWin - hashtag will affect all hotkeys below it. Without hashtag we have to use {}

; Alt+Shift + PgDn, PgUp - Move task to the top or bottom of the list


#If WinActive("ahk_class TfrmTaskListWindow") || WinActive("ahk_class TfrmMyLifeMain")

; move tasks to top
+!PgUp::
SendInput +!{Up 50}
return

; move tasks to bottom
+!PgDn::
SendInput +!{Down 50}
return
#IfWinActive

return


вторник, 2 февраля 2021 г. в 16:20:02 UTC+2, Ying Dong:

Ying Dong

unread,
Feb 4, 2021, 7:25:36 AM2/4/21
to MyLifeOrganized
Thank you very much. I also just started using autohotkey. I will try out in my single instance mode. 
Reply all
Reply to author
Forward
0 new messages