I want to see the context menu of the current folder.
Moderators: Hacker, petermad, Stefan2, white
-
- Junior Member
- Posts: 38
- Joined: 2018-06-04, 13:18 UTC
I want to see the context menu of the current folder.
I would like to see the context menu of the current folder
The way to view the context menu of the currently selected file is 'cm_ContextMenu'
However, I do not know how to view the context menu of the folder I am currently in
How do you do it?
The way to view the context menu of the currently selected file is 'cm_ContextMenu'
However, I do not know how to view the context menu of the folder I am currently in
How do you do it?
- ghisler(Author)
- Site Admin
- Posts: 50889
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Re: I want to see the context menu of the current folder.
You can press Shift+F10 or the special context menu key available on most modern keyboards, or right click on the folder for about half a second.
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Re: I want to see the context menu of the current folder.
aksmfakt132,
HTH
Roman
Code: Select all
cm_GoToParent, cm_ContextMenu
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Re: I want to see the context menu of the current folder.
short right click on the path bar above the file panel.
HTH
Holger
HTH
Holger
Make our planet great again
-
- Junior Member
- Posts: 38
- Joined: 2018-06-04, 13:18 UTC
Re: I want to see the context menu of the current folder.
what are you talking aboutghisler(Author) wrote: 2018-07-22, 10:44 UTC You can press Shift+F10 or the special context menu key available on most modern keyboards, or right click on the folder for about half a second.
I want to see the context menu of the folder that I belong to
I was watching an animal photo file in a folder named animal,
I want to know how to display the context menu of the animal folder when I press a shortcut
Without using the mouse
-
- Junior Member
- Posts: 38
- Joined: 2018-06-04, 13:18 UTC
Re: I want to see the context menu of the current folder.
YesHolgerK wrote: 2018-07-22, 11:05 UTC short right click on the path bar above the file panel.
HTH
Holger
But I do not want to use the mouse.
-
- Junior Member
- Posts: 38
- Joined: 2018-06-04, 13:18 UTC
Re: I want to see the context menu of the current folder.
But this behavior leaves current folder.Hacker wrote: 2018-07-22, 10:52 UTC aksmfakt132,HTHCode: Select all
cm_GoToParent, cm_ContextMenu
Roman
Re: I want to see the context menu of the current folder.
Your question was:
better?
Regards
Holger
How do you do it?
<Home> <Shift+F10>But I do not want to use the mouse.
better?
Regards
Holger
Make our planet great again
-
- Junior Member
- Posts: 38
- Joined: 2018-06-04, 13:18 UTC
Re: I want to see the context menu of the current folder.
OK It was betterHolgerK wrote: 2018-07-22, 13:48 UTC Your question was:How do you do it?<Home> <Shift+F10>But I do not want to use the mouse.
better?
Regards
Holger
however I want one typing
Re: I want to see the context menu of the current folder.
https://autohotkey.com/docs/Hotkeys.htmaksmfakt132 wrote: 2018-07-22, 14:49 UTCOK It was betterfull quote
HolgerK wrote: 2018-07-22, 13:48 UTC Your question was:How do you do it?<Home> <Shift+F10>But I do not want to use the mouse.
better?
Regards
Holger
however I want one typing
https://autohotkey.com/docs/commands/Send.htm
Code: Select all
#IfWinActive, ahk_class TTOTAL_CMD
#+F10::Send {Home}+{F10}
Regards
Holger
Last edited by HolgerK on 2018-07-22, 19:30 UTC, edited 3 times in total.
Make our planet great again
Re: I want to see the context menu of the current folder.
Doesn't need the #Persistent.
Roman
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Re: I want to see the context menu of the current folder.
Thanks.
Removed (code sample seems to be not really so persistent;-)
Holger
Removed (code sample seems to be not really so persistent;-)
Holger
Make our planet great again
Re: I want to see the context menu of the current folder.
2aksmfakt132
A solution without AutoHotkey:
Make these two commands in your usercmd.ini file:
Assign a hotkey to em_homedircontextmenu for example:
You can now press F11 to get the context menu for the current dir.
A solution without AutoHotkey:
Make these two commands in your usercmd.ini file:
Code: Select all
[em_homedir]
cmd=%COMMANDER_EXE% /O
param="%P."
[em_homedircontextmenu]
cmd=em_homedir,cm_wait 200,cm_ContextMenu
Code: Select all
[Shortcuts]
F11=em_homedircontextmenu
License #524 (1994)
Danish Total Commander Translator
TC 11.55rc4 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1393a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Danish Total Commander Translator
TC 11.55rc4 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1393a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
-
- Junior Member
- Posts: 38
- Joined: 2018-06-04, 13:18 UTC
Re: I want to see the context menu of the current folder.
I did the work.petermad wrote: 2018-07-22, 22:17 UTC 2aksmfakt132
A solution without AutoHotkey:
Make these two commands in your usercmd.ini file:Assign a hotkey to em_homedircontextmenu for example:Code: Select all
[em_homedir] cmd=%COMMANDER_EXE% /O param="%P." [em_homedircontextmenu] cmd=em_homedir,cm_wait 200,cm_ContextMenu
You can now press F11 to get the context menu for the current dir.Code: Select all
[Shortcuts] F11=em_homedircontextmenu
However, when I pressed the shortcut key, the following window appeared
Not implemented
em_homedircontextmenu
Re: I want to see the context menu of the current folder.
Maybe you are not using the correct usercmd.ini file.
Try and use the command browser to make the two commands:
1. Run cm_CommandBrowser
2. Sroll down in the Category column and select usercmd.ini
3. Click the "New" button and create the em_homedir command
4. Click the "New" button again and create the em_homedircontextmenu command
Try and use the command browser to make the two commands:
1. Run cm_CommandBrowser
2. Sroll down in the Category column and select usercmd.ini
3. Click the "New" button and create the em_homedir command
4. Click the "New" button again and create the em_homedircontextmenu command
License #524 (1994)
Danish Total Commander Translator
TC 11.55rc4 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1393a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Danish Total Commander Translator
TC 11.55rc4 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1393a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar