Isoraqathedh

IPA AHK script: M and N

Feb 11th, 2012
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. +n::
  2. if (Mod(togglemode,5) = 0) {
  3.     SendInput ŋ
  4.     TrayTip IPA Symbol, Velar nasal, 1, 1
  5. } else if (Mod(togglemode, 5) = 1) {
  6.     SendInput {backspace}ɲ
  7.     TrayTip IPA Symbol, Palatal nasal, 1, 1
  8. } else if (Mod(togglemode, 5) = 2) {
  9.     SendInput {backspace}ɴ
  10.     TrayTip IPA Symbol, Palatal nasal, 1, 1
  11. } else if (Mod(togglemode, 5) = 3) {
  12.     SendInput {backspace}ɳ
  13.     TrayTip IPA Symbol, Retroflex nasal, 1, 1
  14. } else if (Mod(togglemode, 5) = 4) {
  15.     SendInput {backspace}n
  16.     TrayTip IPA Symbol, Alveolar nasal, 1, 1
  17. }
  18. togglemode += 1
  19. SetTimer #a, -450
  20. return
Advertisement
Add Comment
Please, Sign In to add comment