热键重新分配宏不工作

时间:2017-06-30 16:22:38

标签: macros autohotkey

我正在使用AutoHotkey在Dr. Explain中重新分配一些热键。宏执行到消息的点,但实际的新热键不起作用。

这是脚本:

    Typeface font = Typeface.CreateFromAsset(this.Assets, "fonts/Letter_Gothic_Std_Bold.ttf");

    TextView username = FindViewById<TextView>(Resource.Id.username);

    username.SetTypeface(font, TypefaceStyle.Bold);

不确定我是否遗漏了任何东西。

1 个答案:

答案 0 :(得分:0)

定义热键 Ctrl Shift N Ctrl Shift < kbd> 6 用于标题中包含“Jazzit”的窗口

SetTitleMatchMode 2     ; All #If statements match anywhere in title

#IfWinActive Jazzit
F1:: MsgBox Normal --> Alt + A and Normal - emphasis --> Alt + S
^+n::send !a
^+6::send !s
#IfWinActive

重新映射格式(即不使用send)会传递所有修饰键:

^+n::!a     ; sends Alt+Shift+Ctrl+A
^+6::!s     ; sends Alt+Shift+Ctrl+6