当前位置:网站首页>Hotkeys, interface visualization configuration (interface interaction)
Hotkeys, interface visualization configuration (interface interaction)
2022-04-23 05:43:00 【wyazyf】
Application address ( Support visual interface configuration ): Hotkey visual configuration .exe- Desktop system document resources -CSDN download
The source code depends on the package address :AutoHotkey_1.1.33.10_setup.exe- Other document resources -CSDN download
Hotkey visual configuration .ahk File source code
; Hotkey program directory
ahk=C:\Program Files\AutoHotkey\AutoHotkey.exe
; Profile address
wj=C:\Users\Administrator\Desktop\config.ahk
; Finished reading configuration file
FileRead,Contents,*t %wj%
if (ErrorLevel!=0) ; If the configuration file does not exist, initialize
{
; The open file has been written as an append ( file does not exist , Automatically create )
file := FileOpen(wj, "a")
; When writing content to a file in this way , To use `r`n instead of `n To start a new line .
file.Write("`r`n F3::#d")
file.Write("`r`n F4::sendinput 123456")
file.Write("`r`n RAlt::^v")
file.Write("`r`n RCtrl::^c")
file.Close()
FileRead,Contents,*t %wj%
}
#NoTrayIcon ; No display [ Tray icon ]
InputBox, OutputVar , command , Existing orders %Contents%, , 400, 500, 0, 0, , ,
if (ErrorLevel==0){
; The open file has been written as an append ( file does not exist , Automatically create )
file := FileOpen(wj, "a")
; When writing content to a file in this way , To use `r`n instead of `n To start a new line .
file.Write("`r`n"+OutputVar)
file.Close()
; Executable files
Run,%ahk% "%wj%"
}
return
Hotkey Development Manual address :AutoHotkey
版权声明
本文为[wyazyf]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230538214698.html
边栏推荐
- Excel sets row and column colors according to cell contents
- catkin_ What did package do
- 数据安全入门产品——数据库审计系统详解
- shell指令学习1
- Write the declaration of a function to return the reference of the array, and the array contains 10 string objects (notes)
- Pavlov and hobbies
- SQL statement simple optimization
- Reading notes of modern methods of C language programming
- Some pits used by uni
- freemark中插入图片
猜你喜欢
基于ssm 包包商城系统
open3d材质设置参数分析
Data mining -- understanding data
QT drawpixmap and DrawImage blur problem
Generation of straightening body in 3D slicer
第36期《AtCoder Beginner Contest 248 打比赛总结》
C语言——恶搞关机小程序
uni使用的一些坑
Understand the relationship between promise async await
Isosceles triangle - the 9th Lanqiao provincial competition - group C
随机推荐
JSON.
Contract lock loophole
Create cells through JS (while loop)
Flutter 新一代圖形渲染器 Impeller
弘玑|数字化时代下,HR如何进行自我变革和组织变革?
【华为机试】考试得分总数(如何处理答错的情况?回溯一次,代表答错一题)
Pavlov and hobbies
Differences between sea level anatomy and sea surface height anatomy
Shell instruction learning 1
On the use of constant pointer and pointer constant -- exercise (record)
catkin_ What did package do
Linear sieve method (prime sieve)
Parameter analysis of open3d material setting
Common protocols of OSI layer
X86 assembly syntax: at & T and Intel
数据安全入门产品——数据库审计系统详解
Strategies to improve Facebook's touch rate and interaction rate | intelligent customer service helps you grasp users' hearts
OSI层常用协议
对象转map
Redis经典面试题总结2022