win+enter_窗体顶置.ahk 475 B

12345678910111213141516171819202122
  1. ; @Author : liuyuqi
  2. ; @Contact : liuyuqi.gov@msn.cn
  3. ; @Time : 2015/07/21
  4. ; @Version : 1.0
  5. ; @Desc : win+space切换窗口顶置
  6. #space::
  7. WinGetActiveTitle, w ;将当前激活窗口存入变量w
  8. Winset, AlwaysOnTop, Toggle, %w%
  9. WinSet, Transparent, 150, A
  10. Return
  11. #t::
  12. WinGetActiveTitle, w
  13. WinSet, Transparent, 150, A ;透明0-255
  14. Return
  15. #y::
  16. WinGetActiveTitle, w
  17. Winset, AlwaysOnTop, Off , %w%
  18. WinSet, Transparent, Off, A
  19. Return