Estoy haciendo una pagina estatica para incluirla en un CD, pero necesito por javascript abrir un pdf que tambien esta en el mismo CD.
Necesito hacerlo utilizando el PDFReader para no depender de la instalación de softwares como: Adobe Acrobat Reader, lo estoy haciendo de la sgte forma pero me da error.
Por favor necesito ayuda al respecto.
function launch_x(prog,filen){
var fso = new ActiveXObject("Scripting.FileSystemObject");
var theShell = new ActiveXObject("WScript.Shell");
theShell.run(prog+" "+filen, 0, true);
}
function AbrirLibro(){
var dir = window.document.location.toString(); //coger url
var cant = dir.length;
dir = dir.substring( 8, cant - 6); //recortar dir. absoluta
dir1 = "file:///"+ dir + "PDFReader/PDFReader.exe";
dir2 = dir + "libros/libro1.pdf";
launch_x(dir1,dir2);
}