Results 1 to 8 of 8

Thread: Keys?

  1. #1
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default Keys?

    Hey how would I make something like if I pressed the up kep it would make an alert and down key would make an imag.. etc.
    Jeremy | jfein.net

  2. #2
    Join Date
    Dec 2007
    Location
    Ankara, Turkey
    Posts
    160
    Thanks
    2
    Thanked 2 Times in 2 Posts

    Default

    Look for the window.onkeydown, window.onkeyup events

  3. #3
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    No but what I want is if you press the up, down, right, left keys to make an alert or something.
    Jeremy | jfein.net

  4. #4
    Join Date
    Dec 2007
    Location
    Ankara, Turkey
    Posts
    160
    Thanks
    2
    Thanked 2 Times in 2 Posts

    Default

    Ok, I thought so and posted the above message. You should assign a function to the window.onkeyup or window.onkeydown events and then handle the key code inside that function and respond to the keycodes you want.

  5. #5
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    How do I do that
    Jeremy | jfein.net

  6. #6
    Join Date
    Dec 2007
    Location
    Ankara, Turkey
    Posts
    160
    Thanks
    2
    Thanked 2 Times in 2 Posts

    Default

    A simple example

    Code:
    window.onkeydown=function(e)
    {
    	var key = e ? e.which : window.event.keyCode;
    	switch(key)
    	{
    		case 27:
    			alert("You cannot escape from me!");
    			break;
    		case 13:
    			alert("You have pressed enter, right?");
    			break;
    		default:
    			alert("Pressed key's code is: " + key);
    	}
    };

  7. #7
    Join Date
    Aug 2007
    Location
    Ohio
    Posts
    79
    Thanks
    0
    Thanked 15 Times in 15 Posts

  8. #8
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    BYK: Thanks man!
    Jeremy | jfein.net

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •