Cant get this to work ive tried ....
$('html') and $('html, body')
$(window).keydown(function(e) {
if(e.keyCode == 37) { /// left btn
sym.play('FirstAnimation');
});
}
else if(e.keyCode == 39) { /// right button
sym.play('FirstAnimation2');
});
}
});