REDDIT 原始帖子

MurGee Auto Typer Alternative

Looking for a MurGee Auto Typer alternative, I've been using the trial version and now it's asking for an activation key.

原帖正文r/software

Looking for a MurGee Auto Typer alternative, I've been using the trial version and now it's asking for an activation key.

已收录讨论

1 条评论

u/National_Operation14

I believe every MurGee program alternative is AutoHotkey. However, it's a scripting language, so you need to make the script first. For example, achive similar result to MurGee Auto Typer, you can make some script like this: F7::{ ; The key to press A_Clipboard := "Automate Text Typing with AutoHotkey" ; The text to type Send("^v") ; Paste command (Ctrl + v) } That will send Automate Text Typing with AutoHotkey whenever you press F7. It works by copying the text and then pasting it with Ctrl + v⁣. AutoHotkey has a syntax to send text without copying it first: a::SendText("Automate Text Typing with AutoHotkey") But it's kind of glitchy. So using copy is the better solution. If you don't want to make the script first, I do have a program that utilizes AutoHotkey and gives it a nice UI using Python. It's here: https://github.com/Fajar-RahmadJaya/KeyTik. Just make sure to enable Text Format to achieve the same result as Auto Typer. However, it still uses the glitchy version since I just noticed this issue now. I will fix it later.