作者topwing (Levin)
看板EzHotKey
标题Re: [AHK-] AutoHotKey辨识网址
时间Mon Apr 28 14:33:01 2014
※ 引述《solomn (九米)》之铭言:
: #Z::
: Send, ^c
: Sleep 500
: Run, http://www.google.com.tw/search?q=%clipboard%
: Return
: 像上面这个小程式码
: 如何增加功能
: 可以在反白的如果是网址时
: 则是进入网址
: 原程式码会把网址也当作文字
: 丢到Google做搜寻文字
: 谢谢
此范例以Firefox作为浏览器并且要开启着
因为我的习惯是浏览网页时FF一定都开启着
所以做这些查询动作时FF必定也是开启的状态
当然如果你要写个在最初的状态下也就是浏览器未开启前执行到最後的开启网页也是可以
#Z::
StringLeft, DecideVar, Clipboard, 7 ;撷取 Clipboard 中从左到右7个字元至
变数 DecideVar
if DecideVar = http://
{
SetTitleMatchMode 2
WinTitle = Mozilla Firefox ;将变数 WinTitle 设为“Mozilla Firefox”
IfWinExist %WinTitle% ;这边确认有开启 Firefox
{
WinActivate ;如果 Firefox 有开启,移至最前
Send ^t^v{Enter} ;^t:开一个分页 ^v:将网址贴上
}
else
Msgbox, 请先开启Firefox浏览器
}
}
Return
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 111.249.141.182
※ 文章网址: http://webptt.com/cn.aspx?n=bbs/EzHotKey/M.1398666784.A.FD6.html
※ 编辑: topwing (111.249.141.182), 04/28/2014 14:34:42