Play music from keyboard using some js ans some flash

http:net.tutsplus.com/javascript-ajax/how-to-create-a-keypress-navigation-using-jquery/ http:one.idontsmoke.co.uk/

    if(!document.getElementById) { window.location.href = "http://webstandards.org/upgrade/"; }
 
 
 
var typedShit;
 
function keyDown(e) {
  var key = (window.event) ? window.event.keyCode : e.which;
  var letter = String.fromCharCode(key).toLowerCase();
  if(letter.search(/[a-z]/) != -1) {
    typedShit += letter;
    if(typedShit.length > 5) typedShit = typedShit.substr(typedShit.length - 5, 5);
    if(typedShit == "links") {
      var l = (screen.availWidth - 250)/2;
      var t = (screen.availHeight - 240)/2;
      window.open("http://one.idontsmoke.co.uk/links.php","links","height=240,width=250,scrollbars=yes,top="+t+",left="+l);
    }
  }
}
 
document.onkeydown = keyDown;

play music http:www.schillmania.com/projects/soundmanager2/ some neighbor projects * john reisig js rock star http:ejohn.org/apps/hero/

projects/musical_keyboard/index.txt · Last modified: 2011/06/16 13:33 (external edit)
 
 
Creative Commons License Powered by PHP Valid XHTML 1.0 April