Sherman,<br /><br />No need. FM doesn't change the string that you enter in the marker.<br /><br />When using the "message URL" marker (Goto URL from the hypertext),<br />your entries are passed through verbatim to the postscript as the URI<br />(uniform resource identifier) for the /ANN pdfmark. If you examine the<br />intermediate postscript file, you'll find that FM properly takes a<br />"\\adobe\test" and enters it as "\\\\adobe\\test" in the URI portion.<br />The double backslash is the escaped version of a backslash required<br />for proper parsing (otherwise a single backslash will treat adjacent<br />characters as some special symbols).<br /><br />The problem is at the Acrobat end interpreting this string. If no Base<br />URL is supplied for the document, Acrobat assumes<br />file:///<drive>|<folder>/\\adobe\test, where the drive and folders are<br />the location of the open pdf file. However, if you enter a "file:///"<br />for the Base URL of the document, then the links are correctly<br />interpreted as "\\adobe\test".<br /><br />You can automatically add the base URL using the /PUT pdfmark<br />operator, e.g.<br /><br /> [ {Catalog} << /URI << /Base (file:///) >> >> /PUT pdfmark<br /><br />Hint: you put that command in a postscript text frame on your first<br />page.<br /><br />Sorry, but I don't know what the supplied Webworks does with the FM<br />hypertext, as I never use this particular tool.
... View more