Page 1 of 1
"Jump to first File" -command
Posted: 15 Sep 2010 11:05
by Stefan
Question: if there an command to jump to first file in list?
I know POS1 to jump on top of the list
and END to jump to the end.
But often i need to jump to the first file (without tricks or scripts)
I mean something like
pressing Ctrl+POS1
or "Go > Go to first file"
to jump to "first file after the last folder"
.
Re: "Jump to first File" -command
Posted: 15 Sep 2010 11:13
by admin
Miscellaneous / Focus Functions / Switch Focus between Files and Folders
Re: "Jump to first File" -command
Posted: 15 Sep 2010 12:01
by Stefan
admin wrote:Miscellaneous / Focus Functions / Switch Focus between Files and Folders
Thanks, works good enough for me
Just as info for others:
When i am on Files already - i have to execute this command twice to jump to first file.
Ctrl+Pos1 is not customizable. So i have chosen Ctrl+Alt+Pos1 for the moment.
EDIT:
Now i use
"Focus first file behind last folder"
sel 1; sel; #1033;
"Select first file behind last folder"
sel 1; sel; #1033; sendkeys " ";
Explanation:
sel 1; will jump to top of list but select first item, so
sel; will deselect all again.
#1033; is the intern command for "Miscellaneous / Focus Functions / Switch Focus between Files and Folders"
sendkeys " "; will simulate pressing the space bar to select current file.
(PLEASE NOTE that sendkeys is an un-documented and un-supported intern command. Don't ask for help.)
.