Quantcast
Channel: 簡睿隨筆
Viewing all articles
Browse latest Browse all 897

由零開始寫一次關閉多個同名程式的 AutoHotkey腳本(AHK #10)

$
0
0

使用到的指令

  • WinGetTitle: 取得視窗標題
  • InputBox: 輸入字串的對話窗
  • WinExist: 視窗是否存在
  • WinClose: 關閉視窗

AutoHotkey原始碼

#SingleInstance Force
SetTitleMatchMode 2

#n::
  run notepad
  Return

^!f4::
  WinGetTitle sTitle, A
  ;// MsgBox %sTitle%
  ;// InputBox, OutputVar [, Title, Prompt, HIDE, Width, Height, X, Y, Font, Timeout, Default]
  InputBox sTitle, 視窗標題, 請輸入視窗的標題文字, , 300, 150, , , , , %sTitle%
  if (sTitle = "nb") {
      sTitle := "記事本"  ;; 或用 sTitle = 記事本
  } else if (sTitle = "ie") {
      sTitle := "Internet Explorer"
  }
  while WinExist(sTitle)
    WinClose
  Return

參考

  • [[方便工具 WinClose] 一個指令關閉多個視窗](http://jdev.tw/blog/4810/winclose-autohotkey)

說明影片

##

您可能也會有興趣的類似文章


Viewing all articles
Browse latest Browse all 897

Trending Articles