Click to See Complete Forum and Search --> : changing the keyboard layout
giladasaf
May 7th, 2003, 07:13 PM
I use two languages on my keyboard:
keyboard latout.
I'd like to change the keyboard layout using a script that will be writen on a web page (vb or java scripts).
Where can I find such a scipt?
lord loh
May 22nd, 2003, 05:42 AM
Make a process to listen to event of key press...(It is possible...)
If key pressed is "A" then the character added to the text box is "Ä"
Hope it helps...
giladasaf
May 22nd, 2003, 09:11 AM
I think it is the most beautiful twisted thinking I've ever seen.
I envie your genius mind.
It sounds great for local aplication. Still I'm not sure it is such a gr8 idea to monitor key strokes over the internet.
Anyway, the sound of your solution, sounds so good that, I must try it.
As soon as I'll finish my "MUST do" programing, I'll try this!!!
thank you very very very much.
Asaf.
lord loh
May 23rd, 2003, 03:31 AM
Are you being :rolleyes: sarcastic ?
giladasaf
May 23rd, 2003, 04:16 AM
I'm under a lot of presure this days and I tend to be sarcastic.
The Promlem is that I'm too good in being sarcastic.
I'm sorry if I offended you after the great help you offred me.
You must agree with me, that is was an original solution. It surprised me. Nevertheless it was a realy importent lesson how one can solve problem by a flexible thinking(even if it wasn't your intention).
My gratitudes to you are sincere.
Please accept them
And thanking you again
Asaf
lord loh
May 25th, 2003, 01:41 AM
I always solve the problems of the people on the forums sincerely... and solving problem is my only intention... not insulting or cracking jokes...
Never the less, I am flattered...
Thank You...
lord loh
June 5th, 2003, 03:25 AM
<script language="JavaScript1.2">
function alert_keycode(){
alert(event.keyCode)
}
document.onkeypress=alert_keycode
</script>
when I put this before the body tag,
On IE it worked...
Hope it helps..
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.