Funciona correctamente el codigo por si es de utilidad aqui lo dejo.
Código:
function show_key ( the_key )
{
if ( ! the_key )
{
the_key = event.keyCode;
}
var num = String.fromCharCode ( the_key );
var long = (botones.sale.value.length) ;
if (long < 1)
{
botones.sale.value=document.getElementById(num).value;
}
else
{
botones.entra.value=document.getElementById(num).value;
document.botones.cantidad.focus();
}
}
Los inputs son de donde coge el value.
Código:
<input type=text value=Caja name=1 id=1 />
<input type=text value=Preparacion name=2 id=2 />
Gracias miSko .Un saludo.