Autohotkey:获取PhpStorm的调试窗口(浮动模式)?

时间:2015-07-22 14:31:17

标签: phpstorm autohotkey windows-7-x64

使用Autohotkey(Windows中的脚本语言,这里是Win7)。 如何再次获得PhpStorm的调试窗口(浮动模式)? 一旦我切换到浮动模式(PhpStorm版本9),窗口就不再可见,甚至不存在(使用AutoHotkey加载尝试时,我知道标题和类名)。现在调试窗口似乎不存在(说Autohotkey)。 这是我一直试图找到窗口的代码:

 DetectHiddenWindows,On
 SetTitleMatchMode , 1
;~ if(WinExist("ahk_class" . ClassName)) ; 
w=SL5_preg_contentFinder ; woks with this
w=Debug
if(WinExist(w)) ; its case insensitive
{
    WinGetTitle , title, %w%
    WinGetClass,class,A
    MsgBox,yeah `n found: `n %class% = class `n  %title% = title  `n     %debug_ahk_class% = debug_ahk_class
}

BTW我制作了问题的视频,如果您需要更多信息。请告诉我!谢谢!

0 个答案:

没有答案