EzHotKey 板


LINE

原本 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)







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:Tech_Job站内搜寻

TOP