Different keyboard sound for each input languages

Job ID: 35481273

Budget: $10 – $30 USD

need a simple program that detects the languages active right now in windows and when you are typing in make a sound that can be specified by the user

Example:

windows' active input language is = Arabic
every time any key is pressed make = AR sound.wav

windows' active input language is = english
every time any key is pressed make = EN sound.wav

so I can tell which l language I'm typing with

-------------------------------

i have tried using .bat file but not getting the results i needed

@echo off

Set wshShell = WScript.CreateObject("WScript.Shell")


If InputLanguage = "0409" Then \\0409 is Arabic
wshShell.SendKeys "{anykey}"
wshShell.Run "C:\Users\Md\Desktop\test bat keybord\arabic.mp3"
End If

If InputLanguage = "0401" Then \\0401 is English
wshShell.SendKeys "{anykey}"
wshShell.Run "C:\Users\Md\Desktop\test bat keybord\arabic.mp3"
End If