Hola de nuevo DIegoazul, gracias por tu ayuda.
Aqui va el código que llama al XML
Cita: //
getXML = function (){
xmlDoc = new XML();
xmlDoc.ignoreWhite = true;
xmlDoc.load("menu.xml");
xmlDoc.onLoad = function (){
totalJ = xmlDoc.firstChild.childNodes.length;
item._visible = false;
itemGenerate = 0;
intervalGeneration = setInterval(generation, 10);
};
};
//
y este el del XML
Cita: <?xml version="1.0" ?>
<menu>
<link title="01. BUTTON TITLE" desc="Description Text 01 more text" img="01.jpg" link="img/1.pdf"/>
<link title="02. BUTTON TITLE" desc="Description Text 02" img="02.jpg" link="http://................../1.pdf"/>
<link title="03. BUTTON TITLE" desc="Description Text 03 more text" img="03.jpg" link="1.pdf"/>
<link title="04. BUTTON TITLE" desc="Description Text 04" img="04.jpg" linkTo="http://..................../1.pdf"/>
</menu>
como ves he intentado abrir el pdf de distintas formas, pero no me funciona!
ves algo raro???