Minor annoyance - nested archives
Moderators: Hacker, petermad, Stefan2, white
-
- Junior Member
- Posts: 86
- Joined: 2004-05-02, 01:50 UTC
Minor annoyance - nested archives
Go into archive #1. Inside it find archive #2. Go into #2. Now go out of #2--you're in your temp directory, not the directory you started from.
Trick…
2Loren Pechtel
Hello !
• Press F2 instead [••] for each level, and you'll land again in the original folder…
KR
Claude
Clo

• Press F2 instead [••] for each level, and you'll land again in the original folder…


Claude
Clo
#31505 Traducteur Français de T•C French translator Aide en Français Tutoriels Français English Tutorials
3. or use LMB double click at [..]
4. or use key sequence HOME+ENTER
5. or install AHK, and use the following script (save it as Back2Parent.ahk, and start it once per windows session)
Kind regards
Holger
4. or use key sequence HOME+ENTER
5. or install AHK, and use the following script (save it as Back2Parent.ahk, and start it once per windows session)
Code: Select all
$BS::
IfWinActive, ahk_class TTOTAL_CMD
{
ControlGetFocus _FocusedControl
if (_FocusedControl == "TMyListBox1" or _FocusedControl == "TMyListBox2")
{
WinGetText, _PanelText, A
IfInString, _PanelText, temp
{
Send, {HOME}
Send, {ENTER}
Return
}
}
}
Send, {BS}
Return
Holger