using arcgispro, witihin a field of a row in a featureclass I am trying to define a hyperlink to a text file which is relative to my project home folder.
it is my understanding we can define a hyperlink to an absolute file (whihc I can confirm works just fine, the file operns in notepad)...
<a href="file:///c:\temp\readme.txt" >tidedata results</a>
however, the c:\ is not portable so is generally a really bad idea. a better approach is a relative path
I have tried many variants but cannot seem to get this to work in arcgispro...
<a href="file:///.\docs\readme.txt" >tidedata results</a>
<a href="file://.\docs\readme.txt" >tidedata results</a>
<a href=".\docs\readme.txt" >tidedata results</a>
<a href="readme.txt" >tidedata results</a>
I thought the external files would be relative to teh aprx file, ie in the project home folder
for the life of me I cannot get this to work. would anyone have a clue how to make this work?
regards