abracadabraPDF › Forums › PDF – Général › Modification de la propriété de tous les liens d’un document. – RÉPONDU › Répondre à : Modification de la propriété de tous les liens d’un document. – RÉPONDU
J’avance, mais je n’arrive pas à récupérer le numéro de page du lien existant !!!
de plus, je me demande si cela est possible, car j’ai trouvé :
“It’s not possible to get the list of named destinations in a PDF with a script. You must hard-code it into your script, or read it from some external source, like a text file. ” sur http://acrobatusers.com/forum/javascript/changing-internal-hyperlinks
si alex a une idée !!! merci.
:oh:
voici le script dans l’état actuel :
var linkPage = this.pageNum;
var box = this.getPageBox(“Crop”, linkPage); // get the page box
var linksList = this.getLinks(linkPage, box); // get the link
if (linksList.length > 0)
{
for (var i=0; i < linksList.length; i++) // loop through each link
{
var destPage=this.gotoNamedDest(linksList);//destination existante du lien
linksList.setAction(“this.pageNum=”+destPage+”;”+”u000D”+”this.zoomType=zoomtype.fitP;”) //set new destination
}
}