EL PROBLEMA: en la instalacion de ese teclado virtual viene con una pagina HTML de ejemplo en la que enseñan como mostrar y ocultar el teclado virtual pero solo funciona con IE y en FF no me funciona, podrían darme una mano para ver como hacer funcionar este code en FF?
Código HTML:
<HTML> <HEAD> <TITLE></TITLE> <object id=myObj classid="clsid:9E13C2B4-1780-4C50-ADB7-251577956E32" > This text will show if object failed to load </object> <SCRIPT LANGUAGE=javascript> <!-- function start() { myObj.Hide(); myObj.LoadKeyboard("C:\\trans.kbd"); myObj.Position = 5; } function show() { myObj.Show(); } function hide() { myObj.Hide(); } //--> </SCRIPT> </HEAD> <BODY onLoad="start()"> <P> </P> <input type=button value="Show keyboard" onClick="show()"> <input type=button value="Hide keyboard" onClick="hide()"> <p>Just a text field, where we can type in some data with the keyboard <input type=text> </BODY> </HTML>