/ Published in: Other
Fed up with awkward methods to type the disapproval face? I know I was. After hours of searching (yes hours) for ways to paste the disapproval face with a hotkey I found a simple solution.
Note: This script requires AutoHotkey_L to work (use google).
Note: This script requires AutoHotkey_L to work (use google).
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
setbatchlines -1 #singleinstance force #notrayicon ;Put a ; before #notrayicon to see the tray icon, semi-colons are comment characters ;Tested on a Windows 7 x64 Home Premium machine, should work on most windows systems ;Script by Rectifier 06-30-2012 ;The hotkey only works after launching the script (and leaving it on). ;Make sure you have ahk_l installed, then save the script as a .ahk file. ;Make sure the script is encoded in UTF-8 as well. ;If you see ?_? instead, whatever you're working with does not support the character set. ;All you have to do is press the numpad dot/delete for immediate disapproval! NumpadDot::Send ಠ_ಠNumpadDel::Send ಠ_ಠ;Here's an alternative hotkey if you don't have a numpad, simply uncomment and reload the script. ;^+d::Send ಠ_ಠ;The above hotkey is the combination of control + shift + d ;To make your own different version, I suggest reading AHK_L's documentation.