使 SQL Server Management Studio 窗口透明的 AutoHotKey 脚本

问题描述

我创建了一个 ahk 脚本来使活动窗口透明,或者如果它已经设置回不透明

#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
^+t:: ; ctrl+shift+t
    
    ; get the transpareny of the active window
    WinGet,t,Transparent,A

    if t != 150 ; if the active window transpareny is not 150,set it to 150
        WinSet,150,A
    else ; if the active window transpareny is 150,set it to 255
        WinSet,255,A

return

它适用于我迄今为止尝试过的所有窗口,除了 SSMS 窗口。这令人沮丧,因为使 SSMS 窗口透明是我首先去 ahk 的原因。任何有 AutoHotKey 经验的人都可以帮助我使 sql Server Management Studio 窗口变得透明吗?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)