Oct-29-2017, 06:35 PM
I am attempting to send Unicode characters using Linux Autokey's 'keyboard.send_keys' command. The example below is for typing an mdash.
I am using Autokey-py3 v0.93.10 software which is Python 3 based. (in Linux Mint 18.2) Unfortunately none of the following attempts work.
keyboard.sendkeys("—")
keyboard.sendkeys(u"\u2014")
Also tried this which I copied from unicode.py:
import.paste_character("—")
Can someone advise me what I am missing? Any help or direction is greatly appreciated.
I am using Autokey-py3 v0.93.10 software which is Python 3 based. (in Linux Mint 18.2) Unfortunately none of the following attempts work.
keyboard.sendkeys("—")
keyboard.sendkeys(u"\u2014")
Also tried this which I copied from unicode.py:
import.paste_character("—")
Can someone advise me what I am missing? Any help or direction is greatly appreciated.