I'm having an issue where I am setting a GoToRemoteAction for a bookmark in my PDF. The PDF is generated properly, but the resulting action URL appears to be encoded somehow.
Code to generate bookmark:
OutlineItemCollection numericalIndex = new OutlineItemCollection(pdfDocument.Outlines);
numericalIndex.Title = "Numerical Index";
numericalIndex.Action = new Aspose.Pdf.InteractiveFeatures.GoToRemoteAction("../../Path/To/Document.pdf", 1);
The path HAS to be a relative path for this project, as the PDF will live on multiple different sites.
Resulting link in the PDF looks like the attached image.
Any ideas on how to get this link working?