码迷,mamicode.com
首页 > 其他好文 > 详细

热键调用三方程序 --- 实用方法

时间:2018-06-03 00:56:18      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:热键   调用   三方   程序;   快捷键   

1. 问题或需求描述:
热键调用三方程序

2.解决方法:
使用 AutoIt3 脚本语言,可以快速编写出热键主调程序。

3.例如:
利用热键调用三方程序,实现特定需要。例程中,我们实现按 “F4”键时调起三方程序,实现清除电脑上的所有蓝牙连接等功能。

au3代码:

If WinExists("firswof-clearbt") Then Exit
GUICreate("firswof-clearbt")
HotKeySet ( "{ESC}" , "_Exit")
HotKeySet ( "{F2}" , "_ShutAllConsole")
HotKeySet ( "{F3}" , "_RestartBT")
HotKeySet ( "{F4}" , "_ClearBT")
ToolTip("[ESC:退出;F4:清除蓝牙]", 0, 0)

While (1)
   Sleep(60000)
WEnd

Func _Exit()
   Exit
EndFunc

Func _ClearBT()
   ShellExecute ( "E:\BT_Pair.exe" , " -u" , "")
EndFunc

Func _RestartBT()
    ShellExecute ( "E:\BT_Pair.exe" , " -r" , "")
EndFunc

Func _ShutAllConsole()
    ShellExecute ( "E:\BT_Pair.exe" , " -a" , "")
EndFunc

热键调用三方程序 --- 实用方法

标签:热键   调用   三方   程序;   快捷键   

原文地址:http://blog.51cto.com/firswof/2123561

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!