rodent1 Posted January 17, 2014 Posted January 17, 2014 (edited) For my job, I often have to enter accented foreign characters. The normal Windows method is while pressing Alt, typing a numeric code in the numeric keypad with numlock on. But then, you have to make sure your numlock is on, or the result of your typing may be unpredictable! And if you are using a laptop or a tablet with a tablet keyboard, there is no numeric keypad.What this script does:It waits for Win-F6 to start capturing numeric keypress events. The pressed keys are not written, the typed characters are queued. When 4 numbers are queued, the corresponding foreign character is sent to the app.Also there are a lot of characters, and I don't always remember the numeric code I need. So if I press Win-F7, a gui is displayed, it allows me to pick my font, and I can copy the character I need from there and paste it in my running app.To compile or run the code, you will have to use the beta run/beta compile etc with autoit 3.3.8.1 or better.And many thanks to Mikell for his help. Enjoy!<snip> Edited January 19, 2014 by Melba23 Code removed
jdelaney Posted January 17, 2014 Posted January 17, 2014 (edited) You can just make an input in a loop...maybe use a hotkey to bring up the input: ClipPut(Chr(InputBox("chrs","add in character code...it will save to buffer"))) example, add 0252 will output: ü Edited January 17, 2014 by jdelaney IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
rodent1 Posted January 17, 2014 Author Posted January 17, 2014 You're right, of course, and there would have been less effort creating that kind of script. I could also have the Windows character map app running, so I can copy and paste the characters I need. No script needed for that. But if you have to enter a lot of those characters, IMO my system works better. This hotkey/keyboard hook method allows me to enter them directly from inside the app I'm typing into. Fewer steps, more seamless, I like that.
Moderators Melba23 Posted January 17, 2014 Moderators Posted January 17, 2014 rodent1,Although I realise ths was not what you intended, what you posted was a keylogger, pure and simple. Please read this announcement to learn what is and is not acceptable here. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Recommended Posts