作者CHCOOBOO (天满命)
站内EzHotKey
标题[AHK-] 请问标准符号输入的问题...ORZ
时间Sun Apr 25 15:51:23 2010
原本 PhraseExpress用得好好的 今天突然给我大暴走
例如
设定好的ctrl+,会跳出「,」变成会跳出「,,」
输入「(+空格」会跳出「()」并将游标移至框号内,
但今天却变成「( )」(多一个全型空格)
无奈之下只好换套软体
就想来试试传闻已久的AHK
基本上我也只需要一套能快速输入一些全型符号的手段而已...
然後再抓了ezsoft板的脚本
然後小小的修改
把指定程式才能使用的部分删掉
但储存後reload脚本
不管按什麽键都没有反应
右下角也是显示H而非S
请问是什麽地方出问题了吗?
--
; --------------------------------------------------------------------
;
; 《特殊符号快速键》
;
; 【功能说明】
;
; 使用经由剪贴簿送出字串的方式,在指定的应用程式中以快速键输入特殊符号
;
; --------------------------------------------------------------------
; --------------------------------------------------------------------
; 指定使用特殊符号快速键的应用程式 (可依需要自行增减或修改)
;
; * 指定应用程式的目的是为了避免切换应用程式时,必须经常 [开启/关闭]
; 特殊符号快速键的麻烦 (特殊符号快速键开关:Win + P)
;
; * App1~App5 是应用程式的视窗标题或 ahk_class 属性
; (ahk_class 请用 AutoHotkey 的 Window Spy 工具查看)
;
; * AppCount 是应用程式的总数
; --------------------------------------------------------------------
App1 := "ahk_class Notepad" ; 记事本
App2 := "ahk_class OpusApp" ; Word 2000
App3 := "ahk_class rctrl_renwnd32" ; Outlook 2000
App4 := "ahk_class ATH_Note" ; Outlook Express
App5 := "ahk_class IMWindowClass" ; Windows Live Messenger
AppCount = 5
; --------------------------------------------------------------------
; 设定特殊符号快速键 (可依需要自行修改)
;
; * 设定以 Alt + <按键> 来输入特殊符号
; 按键值请参考 AutoHotkey 的说明文件
; --------------------------------------------------------------------
SetHotkey:
SetKeyLabel("!1", "Alt1")
SetKeyLabel("!2", "Alt2")
SetKeyLabel("!3", "Alt3")
SetKeyLabel("!4", "Alt4")
SetKeyLabel("!5", "Alt5")
SetKeyLabel("!6", "Alt6")
SetKeyLabel("!7", "Alt7")
SetKeyLabel("!8", "Alt8")
SetKeyLabel("!9", "Alt9")
SetKeyLabel("!0", "Alt0")
SetKeyLabel("!-", "Alt-")
SetKeyLabel("!=", "Alt=")
SetKeyLabel("!\", "Alt\")
SetKeyLabel("!Q", "AltQ")
SetKeyLabel("!W", "AltW")
SetKeyLabel("!E", "AltE")
SetKeyLabel("!R", "AltR")
SetKeyLabel("!T", "AltT")
SetKeyLabel("!Y", "AltY")
SetKeyLabel("!U", "AltU")
SetKeyLabel("!I", "AltI")
SetKeyLabel("!O", "AltO")
SetKeyLabel("!P", "AltP")
SetKeyLabel("![", "Alt[")
SetKeyLabel("!]", "Alt]")
SetKeyLabel("!A", "AltA")
SetKeyLabel("!S", "AltS")
SetKeyLabel("!D", "AltD")
SetKeyLabel("!F", "AltF")
SetKeyLabel("!G", "AltG")
SetKeyLabel("!H", "AltH")
SetKeyLabel("!J", "AltJ")
SetKeyLabel("!K", "AltK")
SetKeyLabel("!L", "AltL")
SetKeyLabel("!;", "Alt;")
SetKeyLabel("!'", "Alt'")
SetKeyLabel("!Z", "AltZ")
SetKeyLabel("!X", "AltX")
SetKeyLabel("!C", "AltC")
SetKeyLabel("!V", "AltV")
SetKeyLabel("!B", "AltB")
SetKeyLabel("!N", "AltN")
SetKeyLabel("!M", "AltM")
SetKeyLabel("!,", "AltComma")
SetKeyLabel("!.", "Alt.")
SetKeyLabel("!/", "Alt/")
SetKeyLabel("!Ins", "AltIns")
SetKeyLabel("!Del", "AltDel")
SetKeyLabel("!Home", "AltHome")
SetKeyLabel("!End", "AltEnd")
Return
; --------------------------------------------------------------------
; 定义快速键输出的特殊符号 (可依需要自行修改)
;
; * 特殊符号键位跟萤幕小键盘一样,如果忘记了直接开萤幕小键盘看比较快
;
; * 另外新增四个萤幕小键盘没有对应的特殊符号
; Alt + Ins ↖
; Alt + Del ↙
; Alt + Home ↗
; Alt + End ↘
; --------------------------------------------------------------------
Alt1:
SendString("┌")
Return
Alt2:
SendString("┬")
Return
Alt3:
SendString("┐")
Return
Alt4:
SendString("〝")
Return
Alt5:
SendString("〞")
Return
Alt6:
SendString("‘")
Return
Alt7:
SendString("’")
Return
Alt8:
SendString("“")
Return
Alt9:
SendString("”")
Return
Alt0:
SendString("『")
Return
Alt-:
SendString("』")
Return
Alt=:
SendString("「")
Return
Alt\:
SendString("」")
Return
AltQ:
SendString("├")
Return
AltW:
SendString("┼")
Return
AltE:
SendString("┤")
Return
AltR:
SendString("※")
Return
AltT:
SendString("〈")
Return
AltY:
SendString("〉")
Return
AltU:
SendString("《")
Return
AltI:
SendString("》")
Return
AltO:
SendString("【")
Return
AltP:
SendString("】")
Return
Alt[:
SendString("﹝")
Return
Alt]:
SendString("﹞")
Return
AltA:
SendString("└")
Return
AltS:
SendString("┴")
Return
AltD:
SendString("┘")
Return
AltF:
SendString("○")
Return
AltG:
SendString("●")
Return
AltH:
SendString("↑")
Return
AltJ:
SendString("↓")
Return
AltK:
SendString("!")
Return
AltL:
SendString(":")
Return
Alt;:
SendString(";")
Return
Alt':
SendString("、")
Return
AltZ:
SendString("─")
Return
AltX:
SendString("│")
Return
AltC:
SendString("◎")
Return
AltV:
SendString("§")
Return
AltB:
SendString("←")
Return
AltN:
SendString("→")
Return
AltM:
SendString("。")
Return
AltComma:
SendString(",")
Return
Alt.:
SendString("‧")
Return
Alt/:
SendString("?")
Return
AltIns:
SendString("↖")
Return
AltDel:
SendString("↙")
Return
AltHome:
SendString("↗")
Return
AltEnd:
SendString("↘")
Return
; --------------------------------------------------------------------
; 特殊符号快速键开关:Win + P
; --------------------------------------------------------------------
#P::Suspend
; --------------------------------------------------------------------
; 设定特殊符号快速键执行区段标签
; --------------------------------------------------------------------
SetKeyLabel(key_press, key_label)
{
global AppCount
Loop, %AppCount%
{
AppActive := App%A_Index%
Hotkey, IfWinActive, %AppActive%
Hotkey, %key_press%, %key_label%
}
}
; --------------------------------------------------------------------
; 经由剪贴簿送出字串
; --------------------------------------------------------------------
SendString(string)
{
Clipboard := string
SendInput ^V
}
----------------------------------------------------------------------
--
◢ ◥
◤ http://photo.xuite.net/tails0/325558/12.jpg
◥◥◥◥◥ 我...我才没有萌什麽天满....!
︽/ —— —— \︽ 只是..只是..只是觉得她有点可爱啦..!
|/// ///|
◥ ▽ ◢ Blog http://chcooboo.blogspot.com/
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 111.255.192.233
※ 编辑: CHCOOBOO 来自: 111.255.192.233 (04/25 15:52)