Code to be evaluated! [011] Hyperlinks to be removed! …
Hi Scripters,
Another issue about hyperlinks!
As shown in the screenshot below, destinations are missing! So, the deal is to remove the concerned hyperlinks!

I wrote this code but it doesn't work! ![]()
var myDoc = app.activeDocument;
var myHyperlinks = myDoc.hyperlinks.everyItem().getElements();
for ( H = 0; H < myHyperlinks.length; H++ )
{
var myDestination = myHyperlinks
.HyperlinkTextDestination.destinationText; if ( !myDestination.isvalid ) myHyperlinks
.remove(); }
Thanks in advance for your help!
(^/)