console.log(�|

c/

园龄:2年6个月粉丝:5关注:3

随笔分类 -  Autohotkey

收到微信视频邀请时唤醒屏幕-AHK
摘要:loop{ if WinExist("ahk_class VoipTrayWnd"){ send, {space} send, {enter} loop{ If !WinExist("ahk_class VoipTrayWnd"){ Break } } } sleep, 500 }
66
0
0
ait+s截图保存到桌面
摘要:!s:: Send {LShift}+{LWin down}+{S}+{LWin up} Sleep 5000 Gdip_CaptureClipboard(A_Desktop "/" A_MM "-" A_DD " " A_Hour "-" A_Min ".jpg", 100) ;剪贴板图片保存 G
48
0
0
G502滚轮左右滚动调节音量
摘要:#NoTrayIcon ;强制以ANSI版本管理员权限运行 runwith("admin","A") WheelLeft:: Send {Volume_Down} return WheelRight:: Send {Volume_Up} return ;强制改权限 RunWith(RunAsAdmi
197
0
0
GTA5卡单人战局
摘要:原理是暂停 GTA5.exe这个进程10秒以上,再进游戏,就会显示战局内的其他人退出战局(不影响其他人玩游戏)。 win10下的命令行没有找到暂停进程的功能,但是微软开发了一个程序可以实现:https://technet.microsoft.com/en-us/sysinternals/bb8975
526
0
0
函数,类库收藏
摘要:调整显示器亮度 原文链接:https://www.autohotkey.com/board/topic/19754-get-info-from-context-menu/ ; ; AutoHotkey wrapper for Monitor Configuration API Functions ;
150
0
0
pc从arduino获取传感器的数据
摘要:主代码,要log4ahk库 #include <log4ahk> #NoEnv SendMode Input SetWorkingDir %A_ScriptDir% ARDUINO_Port = COM3 ARDUINO_Baud = 115200 ARDUINO_Parity = N ARDUIN
129
0
0
猫猫回收站图标
摘要:文件下载:https://wwz.lanzouw.com/i1GLR05yy2md RunWith("admin") Gui, Add, Picture, w300 h-1, bitbug_favicon (3).ico Gui, Add, Picture, x300 y5 w300 h-1, bi
168
0
0
装机工具GUI
摘要:依赖文件地址 https://wwm.lanzouw.com/iUEbh0152gte #SingleInstance Force #NoEnv SetRegView 64 SetBatchLines -1 SendMode Input #Persistent ;强制以ANSI版本管理员权限运行 r
128
0
0
获取所有同名窗口的id
摘要:get_id(title){ WinGet, var_id, List, %title% ;窗口标题 idlist := [] loop, %var_id%{ idlist.Push(var_id%A_Index%) } If (!var_id){ MsgBox, 无匹配窗口 } Return id
38
0
0
微信多开2.0--增加自动排列窗口功能
摘要:IniRead, bit, myfile.ini, section, key_bit IniRead, times, myfile.ini, section, key_times SetRegView %bit% RegRead, OutputVar2, HKEY_LOCAL_MACHINE\SOF
114
0
0
距离明天七点倒计时--透明窗口显示
摘要:var1 := "" ; 赋值为空, 这样下面将会使用当前时间戳代替. var1 += 1, days var1 := SubStr(var1, 1, 8) tommorrow := var1 0700 ;MsgBox % tommorrow EnvSub, tommorrow, %A_Now%,
129
0
0
判断机器类型(台式机,笔记本. . .)
摘要:3是台式机,10是笔记本,其他的看链接。 https://learn.microsoft.com/en-us/windows/win32/cimwin32prov/win32-systemenclosure?redirectedfrom=MSDN type := cmdSilenceReturn("
111
0
0
更改注册表之后迅速使改动生效的方法
摘要:主要就是一个cmd命令,重启资源管理器 rem @echo off taskkill /f /im explorer.exe explorer.exe ahk代码: RunWaitMany(" ( rem @echo off taskkill /f /im explorer.exe explorer
308
0
0
AHK控制Arduino操作舵机
摘要:https://www.autohotkey.com/board/topic/64696-some-code-arduinoahk-beta-01/ Arduino.ahk #include %A_ScriptDir%\Serial.ahk ; Arduino AHK Library arduino
172
0
0
Win10系统下VScode配置AutoHotKey环境
摘要:本文默认已安装autohotkey。 1.下载vscode安装包 https://code.visualstudio.com/Download 2.开始安装 安装好之后打开是英文界面,先安装一个中文插件,安装好之后会提示重启ide,点击重启就行。 接下来安装autohotkey插件,跟上面一样的操作
2135
0
0
导出office&windows密钥
摘要:RunWith("admin") ;当前AHK版本 := (!A_IsUnicode) ? "ANSI" : (A_PtrSize=4) ? "Unicode 32" : "Unicode 64" ;当前权限 := (A_IsAdmin=1) ? "管理员权限" : "普通权限" ;MsgBox,
306
0
0
鼠标高亮
摘要:从这篇文章更改 https://www.autoahk.com/archives/34648 这里改颜色 透明度具体对应百分比: 100% — FF 90% — E6 80% — CC 70% — B3 60% — 99 50% — 80 40% — 66 30% — 4D 20% — 33 10%
157
0
0
钢琴家刷屏器
摘要:1 #NoEnv 2 SetBatchLines -1 3 ListLines Off 4 5 ;强制以ANSI版本管理员权限运行 6 runwith("admin") 7 8 IniRead, con, myfile.ini, Count, count 9 IniRead, pl1, myfile
45
0
0
极速翻译器-有道 重制版
摘要:划词翻译 依赖beautifultootip库:https://github.com/telppa/BeautifulToolTip 影响剪贴板 1 #SingleInstance Force 2 SetBatchLines, -1 3 CoordMode, ToolTip, Screen 4 5
188
0
0
在任务栏上用滚轮控制屏幕亮度
摘要:用到以下项目: Class_Monitor:https://github.com/jNizM/Class_Monitor Beautifultooltip:https://github.com/telppa/BeautifulToolTip 文件结构 使用方法:鼠标移动到任务栏,然后使用滚轮调节屏幕
155
0
0
1
点击右上角即可分享
微信分享提示
深色
回顶
收起