Inside Edge Animate a composition I am creating I have placed urls (http) of each of the html that has my web site. But I have a problem, two of the url work well and clicking on them opens the corresponding page. But the other four url open the same html page, one of the two that works. I have examined one by one and are spelled correctly, also check the file edgeActions.js and appear correctly. I do not understand that 4 of the url address open the same one that if it works if they are well written.
This is part of edgeActions.js:
Symbol.bindElementAction(compId, symbolName, "${_ArticulosClick}", "click", function(sym, e) {
// Ir a una nueva dirección URL en la ventana actual
// (sustituya "_self" por un atributo de destino para una nueva ventana)
window.open("http://rugidodelleon.comuv.com/articulo.html", "_top");
});
//Edge binding end
Symbol.bindElementAction(compId, symbolName, "${_CursosClick}", "click", function(sym, e) {
// Ir a una nueva dirección URL en la ventana actual
// (sustituya "_self" por un atributo de destino para una nueva ventana)
window.open("http://rugidodelleon.comuv.com/cursos.html", "_top");
});
//Edge binding end
Symbol.bindElementAction(compId, symbolName, "${_BiografiasClick}", "click", function(sym, e) {
// Ir a una nueva dirección URL en la ventana actual
// (sustituya "_self" por un atributo de destino para una nueva ventana)
window.open("http://rugidodelleon.comuv.com/biografia.html", "_top");
});
//Edge binding end
Symbol.bindElementAction(compId, symbolName, "${_ParaTiMujerClick}", "click", function(sym, e) {
// Ir a una nueva dirección URL en la ventana actual
// (sustituya "_self" por un atributo de destino para una nueva ventana)
window.open("http://rugidodelleon.comuv.com/para-ti-mujer.html", "_top");
});
//Edge binding end
Symbol.bindElementAction(compId, symbolName, "${_ForosClick}", "click", function(sym, e) {
// Ir a una nueva dirección URL en la ventana actual
// (sustituya "_self" por un atributo de destino para una nueva ventana)
window.open("http://rugidodelleon.comuv.com/foros.html", "_top");
});
//Edge binding end
Symbol.bindElementAction(compId, symbolName, "${_HistoriasClick}", "click", function(sym, e) {
// Ir a una nueva dirección URL en la ventana actual
// (sustituya "_self" por un atributo de destino para una nueva ventana)
window.open("http://rugidodelleon.comuv.com/historias.html", "_top");
});
//Edge binding end