AutoHotkey: AppendLnk option for packing (plus: Automatically assign name for archive): Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
(1.01 - fixed timeout from inside archives)
((v1.02 - restore clipboard contents after use/on exit))
Line 24: Line 24:
*/ ; --> <code><pre>
*/ ; --> <code><pre>
; ////////////////////////////////////////////////////////////////////////////
; ////////////////////////////////////////////////////////////////////////////
; // TC_AppendLnkPack.ahk v1.01 -  (W) StatusQuo 2008    (for TC 7.0 and up)
; // TC_AppendLnkPack.ahk v1.02 -  (W) StatusQuo 2008    (for TC 7.0 and up)
; //
; //
; // Context sensitive extension of TC's suggested name in packing dialog (Alt-F5),
; // Context sensitive extension of TC's suggested name in packing dialog (Alt-F5),
Line 45: Line 45:
#IfWinActive ahk_class TTOTAL_CMD
#IfWinActive ahk_class TTOTAL_CMD
!F5::
!F5::
IfWinNotExist,  ahk_class TTOTAL_CMD, return
sClipSave = %Clipboard%
IfWinNotExist,  ahk_class TTOTAL_CMD
Goto, lExit
IfWinNotActive, ahk_class TTOTAL_CMD, , WinActivate, ahk_class TTOTAL_CMD,  
IfWinNotActive, ahk_class TTOTAL_CMD, , WinActivate, ahk_class TTOTAL_CMD,  
WinWaitActive,  ahk_class TTOTAL_CMD
WinWaitActive,  ahk_class TTOTAL_CMD
Line 52: Line 54:
ControlGetFocus, sLastFocus, ahk_class TTOTAL_CMD
ControlGetFocus, sLastFocus, ahk_class TTOTAL_CMD
; check, if TC's main window is active
; check, if TC's main window is active
IfNotInString, sLastFocus, TMyListBox, return
IfNotInString, sLastFocus, TMyListBox
Goto, lExit
; 2017 - cm_CopyNamesToClip - copy selected file names to clipboard
; 2017 - cm_CopyNamesToClip - copy selected file names to clipboard
Line 59: Line 62:
ClipWait, 1
ClipWait, 1
if ErrorLevel
if ErrorLevel
{ MsgBox, 49, TimeOut - %A_ScriptName%, - TimeOut - `n`nCould not get selected file names from TC`n(cm_CopyToClipboard)., 7
{ Clipboard = %sClipSave%
IfMsgBox, Cancel,  Return
MsgBox, 49, TimeOut - %A_ScriptName%, - TimeOut - `n`nCould not get selected file names from TC`n(cm_CopyToClipboard)., 7
IfMsgBox, Timeout, Return
IfMsgBox, Cancel,  Goto, lExit
IfMsgBox, Timeout, Goto, lExit
ControlSend,  TPanel1, !{F5}
ControlSend,  TPanel1, !{F5}
Return
Goto, lExit
}
}
Line 94: Line 98:
; different file names selected: => use dirname.zip
; different file names selected: => use dirname.zip
; (change nothing at all, use TC's suggestion)
; (change nothing at all, use TC's suggestion)
IfEqual, boUseName, 0
IfEqual, boUseName, 0, Goto, lExit
return
; all files have same name:    => use filename.zip
; all files have same name:    => use filename.zip
WinWait,      ahk_class TDLGZIP
WinWait,      ahk_class TDLGZIP
ControlSend,  TEdit1, !{F5}%sFirstName%{HOME}+{END}
ControlSend,  TEdit1, !{F5}%sFirstName%{HOME}+{END}
return
Goto, lExit
}
}


Line 106: Line 109:
WinWait,      ahk_class TDLGZIP
WinWait,      ahk_class TDLGZIP
ControlSend,  TEdit1, !{F5}%sFirstFullName%{HOME}+{END}
ControlSend,  TEdit1, !{F5}%sFirstFullName%{HOME}+{END}
lExit:
Clipboard = %sClipSave%
Return
#IfWinActive
#IfWinActive
;</pre></code>
;</pre></code>

Revision as of 02:11, 20 January 2008

Context sensitive extension of TC's suggested name in packing dialog (Alt-F5), emulating the missing AppendLnkPack option in TC up to 7.02a.

- Stays resident in memory, can be quit via its icon in the system tray.
- Gets invoked with Alt-F5, replacing TC's standard name suggestion.
- The originally suggested name can be restored by pressing Alt-Backspace once, if needed.
; // Resulting archive name:
; //   - if only 1 file selected -------------------- :  zip:filename.ext.zip (*.*.zip)
; //   - if multiple files /      same name  selected :  zip:filename.zip     (  *.zip)
; //   - if multiple files / different names selected :  zip:dirname.zip (as suggested by TC)

Related links:


	; ////////////////////////////////////////////////////////////////////////////
	; // TC_AppendLnkPack.ahk v1.02  -  (W) StatusQuo 2008     (for TC 7.0 and up)
	; //
	; // Context sensitive extension of TC's suggested name in packing dialog (Alt-F5),
	; // emulating the missing AppendLnkPack option,
	; // => http://ghisler.ch/board/viewtopic.php?p=120095#120095
	; //
	; // Option 2 ("multiple files, same name") inspired by
	; // http://www.ghisler.ch/wiki/index.php/AutoHotkey:_Automatically_assign_name_for_archive
	; //
	; ////////////////////////////////////////////////////////////////////////////
	; //
	; // Resulting archive name:
	; //   - only 1 file selected:            zip:filename.ext.zip
	; //   - multiple files, same name:       zip:filename.zip
	; //   - multiple files, different names: zip:dirname.zip (as suggested by TC)
	; //
	; ////////////////////////////////////////////////////////////////////////////

#SingleInstance force
#IfWinActive ahk_class TTOTAL_CMD
!F5::
	sClipSave = %Clipboard%
	IfWinNotExist,  ahk_class TTOTAL_CMD
		Goto, lExit
	IfWinNotActive, ahk_class TTOTAL_CMD, , WinActivate, ahk_class TTOTAL_CMD, 
	WinWaitActive,  ahk_class TTOTAL_CMD
		; save active control name (side of active panel);
		; while TC is inactive in background, nothing has the focus!
	ControlGetFocus, sLastFocus, ahk_class TTOTAL_CMD
		; check, if TC's main window is active
	IfNotInString, sLastFocus, TMyListBox
		Goto, lExit
	
		; 2017 - cm_CopyNamesToClip - copy selected file names to clipboard
	Clipboard=
	SendMessage, 1075, 2017
	ClipWait, 1
	if ErrorLevel
	{	Clipboard = %sClipSave%
		MsgBox, 49, TimeOut - %A_ScriptName%, - TimeOut - `n`nCould not get selected file names from TC`n(cm_CopyToClipboard)., 7
		IfMsgBox, Cancel,  Goto, lExit
		IfMsgBox, Timeout, Goto, lExit
		ControlSend,  TPanel1, !{F5}
		Goto, lExit
	}
	
		; parse selected file names
	 iLines = 0
	boUseName = 1
	 sFirstName =
	 sFirstFullName =
	Loop, Parse, Clipboard, `n, `r
	{	iLines += 1
			; cut path and extension
		SplitPath, A_LoopField, FullFileName, , , FileNameNoExt

			; use first name for comparison
		if (sFirstName = "") 
		{	 sFirstName     = %FileNameNoExt%
			 sFirstFullName = %FullFileName%
		} else {
				; check if there is a different file name
			if (FileNameNoExt <> sFirstName)
			{	boUseName = 0
				break
			}
		}
	}
	
		; multiple files selected:
	if (iLines > 1)
	{	ControlSend,  TPanel1, !{F5}
			; different file names selected: => use dirname.zip
			; (change nothing at all, use TC's suggestion)
		IfEqual, boUseName, 0, Goto, lExit
			; all files have same name:     => use filename.zip
		WinWait,       ahk_class TDLGZIP
		ControlSend,  TEdit1, !{F5}%sFirstName%{HOME}+{END}
		Goto, lExit
	}

		; single file name selected:   => use filename.ext.zip
	ControlSend,  TPanel1, !{F5}
	WinWait,       ahk_class TDLGZIP
	ControlSend,  TEdit1, !{F5}%sFirstFullName%{HOME}+{END}
lExit:
	Clipboard = %sClipSave%
	Return
#IfWinActive
;