码迷,mamicode.com
首页 > Web开发 > 详细

StrokesPlus 谷歌搜索结果转https

时间:2016-05-23 11:58:17      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

StrokesPlus 谷歌搜索结果转https

亲测ie11可用

--清空剪切板
acSetClipboardText(‘‘)
acSendKeys("^l")      --选中地址栏
acDelay(50)           --延迟执行
acSendControlDown()   --按下Ctrl键
acDelay(50)           --延迟执行
acSendKeys("c")       --复制
acSendControlUp()     --松开Ctrl键
--返回剪贴板的值
local url = acGetClipboardText()
--判断是否是谷歌搜索结果
if string.find(url,‘http?://www.google.com‘) then
	--将http://www.google.com替换为https://www.google.com
	url = string.gsub(url,‘http?://www.google.com‘,‘https://www.google.com‘)
	--将url复制到剪切板
	acSetClipboardText(url)
	acSendControlDown()   --按下Ctrl键
	acDelay(50)           --延迟执行
	acSendKeys("v")       --复制
	acSendControlUp()     --松开Ctrl键
	acSendKeys("{ENTER}") --按下回车刷新浏览器
end

 

StrokesPlus 谷歌搜索结果转https

标签:

原文地址:http://www.cnblogs.com/mlzs/p/5519405.html

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