• 按键公众号 :
按键精灵电脑版
立即下载

软件版本:2014.06
软件大小:22.9M
更新时间:2021-12-03

按键精灵安卓版
立即下载

软件版本:3.7.2
软件大小:46.2M
更新时间:2023-05-10

按键精灵iOS版
立即下载

软件版本:1.8.0
软件大小:29.2M
更新时间:2023-03-21

按键手机助手
立即下载

软件版本:3.8.0
软件大小:262M
更新时间:2023-05-30

快捷导航

登录 后使用快捷导航
没有帐号? 注册

发新话题 回复该主题

[技术交流] 【院刊】-【201501期】361最新插件支持播放视频——三行代码搞定 [复制链接]

61#

觀看學習

62#

也支持播放非本地文件么?

63#

看看能不能用的上~~

64#

学习一下

65#

大苏打撒打算

66#

361最新插件支持播放视频——三行代码搞定

67#

213

发射点发啊斯蒂芬

68#

//创建对鼠标左键弹起的监测
KeyData = Plugin.WndEx7_20.CreateKeyTrack(0,"Left Button",32)
Do
//获得鼠标所指的可见的顶窗口的窗口句柄
hwnd = Plugin.WndEx7_20.GetMousePointWindowS(1 Or 32 Or 16384)
If hwnd <> 0 Then
//突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(hwnd, 5, "0000FF", "7F7FFF", 150, 0)
Else
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
End If
Delay 200
//获得按键动作,这里根据CreateKeyTrack的参数,获得的是鼠标左键弹起的动作
KeyState = Plugin.WndEx7_20.GetKey(KeyData, KeyValue)
If KeyState > 0 And hwnd <> 0 Then
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
Exit Do
End If
Loop
//执行窗口操作
MsgBox "窗口句柄:" & CStr(hwnd),4096
//OnScriptExit过程在脚本结束时执行,即使脚本执行到一半的时候,你按了停止热键,它也会执行了这个过程再停止
Sub OnScriptExit()
//删除对按键的监测
Call Plugin.WndEx7_20.DeleteKeyTrack(KeyData)
End Sub//创建对鼠标左键弹起的监测
KeyData = Plugin.WndEx7_20.CreateKeyTrack(0,"Left Button",32)
Do
//获得鼠标所指的可见的顶窗口的窗口句柄
hwnd = Plugin.WndEx7_20.GetMousePointWindowS(1 Or 32 Or 16384)
If hwnd <> 0 Then
//突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(hwnd, 5, "0000FF", "7F7FFF", 150, 0)
Else
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
End If
Delay 200
//获得按键动作,这里根据CreateKeyTrack的参数,获得的是鼠标左键弹起的动作
KeyState = Plugin.WndEx7_20.GetKey(KeyData, KeyValue)
If KeyState > 0 And hwnd <> 0 Then
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
Exit Do
End If
Loop
//执行窗口操作
MsgBox "窗口句柄:" & CStr(hwnd),4096
//OnScriptExit过程在脚本结束时执行,即使脚本执行到一半的时候,你按了停止热键,它也会执行了这个过程再停止
Sub OnScriptExit()
//删除对按键的监测
Call Plugin.WndEx7_20.DeleteKeyTrack(KeyData)
End Sub//创建对鼠标左键弹起的监测
KeyData = Plugin.WndEx7_20.CreateKeyTrack(0,"Left Button",32)
Do
//获得鼠标所指的可见的顶窗口的窗口句柄
hwnd = Plugin.WndEx7_20.GetMousePointWindowS(1 Or 32 Or 16384)
If hwnd <> 0 Then
//突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(hwnd, 5, "0000FF", "7F7FFF", 150, 0)
Else
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
End If
Delay 200
//获得按键动作,这里根据CreateKeyTrack的参数,获得的是鼠标左键弹起的动作
KeyState = Plugin.WndEx7_20.GetKey(KeyData, KeyValue)
If KeyState > 0 And hwnd <> 0 Then
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
Exit Do
End If
Loop
//执行窗口操作
MsgBox "窗口句柄:" & CStr(hwnd),4096
//OnScriptExit过程在脚本结束时执行,即使脚本执行到一半的时候,你按了停止热键,它也会执行了这个过程再停止
Sub OnScriptExit()
//删除对按键的监测
Call Plugin.WndEx7_20.DeleteKeyTrack(KeyData)
End Sub//创建对鼠标左键弹起的监测
KeyData = Plugin.WndEx7_20.CreateKeyTrack(0,"Left Button",32)
Do
//获得鼠标所指的可见的顶窗口的窗口句柄
hwnd = Plugin.WndEx7_20.GetMousePointWindowS(1 Or 32 Or 16384)
If hwnd <> 0 Then
//突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(hwnd, 5, "0000FF", "7F7FFF", 150, 0)
Else
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
End If
Delay 200
//获得按键动作,这里根据CreateKeyTrack的参数,获得的是鼠标左键弹起的动作
KeyState = Plugin.WndEx7_20.GetKey(KeyData, KeyValue)
If KeyState > 0 And hwnd <> 0 Then
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
Exit Do
End If
Loop
//执行窗口操作
MsgBox "窗口句柄:" & CStr(hwnd),4096
//OnScriptExit过程在脚本结束时执行,即使脚本执行到一半的时候,你按了停止热键,它也会执行了这个过程再停止
Sub OnScriptExit()
//删除对按键的监测
Call Plugin.WndEx7_20.DeleteKeyTrack(KeyData)
End Sub//创建对鼠标左键弹起的监测
KeyData = Plugin.WndEx7_20.CreateKeyTrack(0,"Left Button",32)
Do
//获得鼠标所指的可见的顶窗口的窗口句柄
hwnd = Plugin.WndEx7_20.GetMousePointWindowS(1 Or 32 Or 16384)
If hwnd <> 0 Then
//突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(hwnd, 5, "0000FF", "7F7FFF", 150, 0)
Else
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
End If
Delay 200
//获得按键动作,这里根据CreateKeyTrack的参数,获得的是鼠标左键弹起的动作
KeyState = Plugin.WndEx7_20.GetKey(KeyData, KeyValue)
If KeyState > 0 And hwnd <> 0 Then
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
Exit Do
End If
Loop
//执行窗口操作
MsgBox "窗口句柄:" & CStr(hwnd),4096
//OnScriptExit过程在脚本结束时执行,即使脚本执行到一半的时候,你按了停止热键,它也会执行了这个过程再停止
Sub OnScriptExit()
//删除对按键的监测
Call Plugin.WndEx7_20.DeleteKeyTrack(KeyData)
End Sub//创建对鼠标左键弹起的监测
KeyData = Plugin.WndEx7_20.CreateKeyTrack(0,"Left Button",32)
Do
//获得鼠标所指的可见的顶窗口的窗口句柄
hwnd = Plugin.WndEx7_20.GetMousePointWindowS(1 Or 32 Or 16384)
If hwnd <> 0 Then
//突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(hwnd, 5, "0000FF", "7F7FFF", 150, 0)
Else
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
End If
Delay 200
//获得按键动作,这里根据CreateKeyTrack的参数,获得的是鼠标左键弹起的动作
KeyState = Plugin.WndEx7_20.GetKey(KeyData, KeyValue)
If KeyState > 0 And hwnd <> 0 Then
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
Exit Do
End If
Loop
//执行窗口操作
MsgBox "窗口句柄:" & CStr(hwnd),4096
//OnScriptExit过程在脚本结束时执行,即使脚本执行到一半的时候,你按了停止热键,它也会执行了这个过程再停止
Sub OnScriptExit()
//删除对按键的监测
Call Plugin.WndEx7_20.DeleteKeyTrack(KeyData)
End Sub//创建对鼠标左键弹起的监测
KeyData = Plugin.WndEx7_20.CreateKeyTrack(0,"Left Button",32)
Do
//获得鼠标所指的可见的顶窗口的窗口句柄
hwnd = Plugin.WndEx7_20.GetMousePointWindowS(1 Or 32 Or 16384)
If hwnd <> 0 Then
//突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(hwnd, 5, "0000FF", "7F7FFF", 150, 0)
Else
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
End If
Delay 200
//获得按键动作,这里根据CreateKeyTrack的参数,获得的是鼠标左键弹起的动作
KeyState = Plugin.WndEx7_20.GetKey(KeyData, KeyValue)
If KeyState > 0 And hwnd <> 0 Then
//停止突出显示窗口
Call Plugin.WndEx7_20.HighlightWindowEx(0, 0, 0, 0, 0, 0)
Exit Do
End If
Loop
//执行窗口操作
MsgBox "窗口句柄:" & CStr(hwnd),4096
//OnScriptExit过程在脚本结束时执行,即使脚本执行到一半的时候,你按了停止热键,它也会执行了这个过程再停止
Sub OnScriptExit()
//删除对按键的监测
Call Plugin.WndEx7_20.DeleteKeyTrack(KeyData)
End Sub

69#

看看啦学习下

70#

小弟菲欧娜公司点评

71#

功夫发达

72#

啛啛喳喳错错错错错错错错错错错错错

73#

觀看學習

74#

斯蒂芬斯蒂芬斯蒂芬速度根深蒂固

75#

啥哈哈哈哈

76#

学习

77#

最新插件支持播放视频——三行代码搞定修改

78#

看看

79#

RE:【院刊】-【201501期】361最新插件支持播放视频——三行代码搞定修改

80#

361找图是不是有问题啊。

发新话题 回复该主题