![]() |
|
AutoHotkey scripts - Printable Version +- kanji koohii FORUM (http://forum.koohii.com) +-- Forum: Learning Japanese (http://forum.koohii.com/forum-4.html) +--- Forum: Off topic (http://forum.koohii.com/forum-13.html) +--- Thread: AutoHotkey scripts (/thread-7950.html) |
AutoHotkey scripts - Sebastian - 2011-06-27 Autohotkey's site Wrote:AutoHotkey is a free, open-source utility for Windows. With it, you can:If you have useful or interesting AutoHotkey scripts, share them here. If the script is too long, you can use something like Pastebin This one lets you review in this site using the arrow keys. Down = Flip card Left = Fail the card Right = Pass (normal, not easy) Control+Left = Undo Up = Use "copy to clipboard" function from Rikaichan when the popup is on screen. Control+Up = Same as above, but it uses tha "save to file" function. This script will work only in the Review page when CapsLock is On (so you can use the keys normally when editing stories, etc.) Feel free to use or modify. Quote:SetTitleMatchMode, 2Save the script to a .ahk file and run it with AutoHotkey. This scripts is very simple, and probably there are better or simpler ways of accomplishing the same. The idea is that you can change the keybord shortcuts to whatever fits your needs or tastes better. For example, you could do something similar to change Anki's shortcuts if you want to use the right hand for reviewing. With AutoHotkey you can do much more, this is just something I wrote for myself and thought that someone else could have some use for it. AutoHotkey scripts - cb4960 - 2011-06-27 Sebastian Wrote:For example, you could do something similar to change Anki's shortcuts if you want to use the right hand for reviewing.That's what I do: Code: SetTitleMatchMode, 2If Anki is currently active, then map the j, k, l and ; keys to 1 (again), 2 (hard), 3 (good), 4 (easy) and map the p key to Ctrl-Z (undo). |