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
<https://www.autohotkey.com/>
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:
> 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
--
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 [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/mylifeorganized/2bc599b6-60ef-4ed8-b207-9d7571f6c4ffn%40googlegroups.com.