AutoHotkey: Send a user command to Total Commander: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
(Created page with " /* Script Name: SendTCUserCommand.ahk AutoHotkey 版本: 1.1.2.3 操作系统: Windows XP 作者: sunwind <1576157@qq.com> 博客: http://blog.csdn.net/liuyuku…")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
; Script Name: SendTCUserCommand.ahk
; AutoHotkey : 1.1.2.3 ansi
; Operating System: Windows XP
; Author:        sunwind <1576157@qq.com>
; Blog:        http://blog.csdn.net/liuyukuan
; Function:Send a user command to Total Commander
; Version:  v1.01


/*
Script Name: SendTCUserCommand.ahk
AutoHotkey 版本: 1.1.2.3
操作系统:    Windows XP
作者:        sunwind <1576157@qq.com>
博客:        http://blog.csdn.net/liuyukuan
脚本说明:此工具用来发送TC用户命令。
脚本版本:  v1.0
*/


;~ 需要Total Commander 的usercmd.ini文件中定义好用户命令,比如em_openDefaultTab
;~ [em_openDefaultTab]
;~ button=
;~ cmd=OPENTABS %COMMANDER_PATH%\tab\!!!.tab


#1::  ;TEST
; Total Commander 《usercmd.ini》 defined function as follow:
  SendTCUserCommand("em_openDefaultTab")
; [em_openDefaultTab]
Return
; cmd=OPENTABS %COMMANDER_PATH%\tab\!!!.tab
SendTCUserCommand(Command) ; string
 
  {
#1::  ;TEST
    If  Command <>
  SendTCUserCommand("em_openDefaultTab")
      {
Return
        VarSetCapacity(CopyDataStruct, 3*A_PtrSize, 0)  ; Set up the structure's memory area.
 
        dwData := Asc("E") + 256 * Asc("M")
SendTCUserCommand(Command) ; string
        NumPut(dwData,  CopyDataStruct, 0)
  {
        cbData := (StrLen(Command) + 1) * (A_IsUnicode ? 2 : 1)  ;SizeInBytes
    If  Command <>
        NumPut(cbData, CopyDataStruct, A_PtrSize)  ; OS requires that this be done.
      {
        NumPut(&Command, CopyDataStruct, 2*A_PtrSize)  ; Set lpData to point to the string itself.
        VarSetCapacity(CopyDataStruct, 3*A_PtrSize, 0)  ; Set up the structure's memory area.
        SendMessage, 0x4a, 0, &CopyDataStruct,, ahk_class TTOTAL_CMD ; 0x4a is WM_COPYDATA. Must use Send not Post.
        dwData := Asc("E") + 256 * Asc("M")
      }
        NumPut(dwData,  CopyDataStruct, 0)
  }
        cbData := (StrLen(Command) + 1) * (A_IsUnicode ? 2 : 1)  ;SizeInBytes
        NumPut(cbData, CopyDataStruct, A_PtrSize)  ; OS requires that this be done.
        NumPut(&Command, CopyDataStruct, 2*A_PtrSize)  ; Set lpData to point to the string itself.
        SendMessage, 0x4a, 0, &CopyDataStruct,, ahk_class TTOTAL_CMD ; 0x4a is WM_COPYDATA. Must use Send not Post.
      }
  }
 
Back to [[AutoHotkey]]
 
[[Category:AutoHotkey scripts|Send a command to Total Commander]]
[[de:AutoHotkey: Schicke einen Befehl an den Total Commander]]

Latest revision as of 01:54, 15 September 2011

; Script Name: SendTCUserCommand.ahk
; AutoHotkey : 1.1.2.3 ansi
; Operating System: Windows XP
; Author:        sunwind <1576157@qq.com> 
; Blog:        http://blog.csdn.net/liuyukuan
; Function:Send a user command to Total Commander
; Version:   v1.01


; Total Commander 《usercmd.ini》 defined function as follow:
; [em_openDefaultTab]
; cmd=OPENTABS %COMMANDER_PATH%\tab\!!!.tab
#1::  ;TEST
  SendTCUserCommand("em_openDefaultTab")
Return
SendTCUserCommand(Command) ; string
  {
    If  Command <>
      {
        VarSetCapacity(CopyDataStruct, 3*A_PtrSize, 0)  ; Set up the structure's memory area.
        dwData := Asc("E") + 256 * Asc("M")
        NumPut(dwData,  CopyDataStruct, 0)
        cbData := (StrLen(Command) + 1) * (A_IsUnicode ? 2 : 1)  ;SizeInBytes
        NumPut(cbData, CopyDataStruct, A_PtrSize)  ; OS requires that this be done.
        NumPut(&Command, CopyDataStruct, 2*A_PtrSize)  ; Set lpData to point to the string itself.
        SendMessage, 0x4a, 0, &CopyDataStruct,, ahk_class TTOTAL_CMD ; 0x4a is WM_COPYDATA. Must use Send not Post.
      }
  }

Back to AutoHotkey