I use special characters in my writing some times mainly ± ° Ø and some others as well so when I ran across an article about holding Alt and typing a numeric code for various characters I decided to find a way to do this with a single key on my TS. So here it is.
Ø = Holding Alt and typing 0216 on the key pad
To do this I created an event macro and added the macro to a key stroke
The macro is:
Code: Select all
Alt + Numpad0
Alt + Numpad2
Alt + Numpad1
Alt + Numpad6
Code: Select all
<EventMacro postpone_expansion="true" macro_name="dia" tree_folder="Punctuation" lib="user">
<KeyEvent keyCode="Numpad0" modifiers="LeftAlt" driverContext=" win" />
<KeyEvent keyCode="Numpad2" modifiers="LeftAlt" driverContext=" win" />
<KeyEvent keyCode="Numpad1" modifiers="LeftAlt" driverContext=" win" />
<KeyEvent keyCode="Numpad6" modifiers="LeftAlt" driverContext=" win" />
</EventMacro>
Code: Select all
<MacroRefEvent macro_ref="dia" layoutContext=" punctpadon" />