it depends on how you implemented the link. PP should allow you to use dynamic linking, just as it is done in webpages start the link with:
./
this informs the program or device to start looking in the current location, as opposed to typing in an entire path, eg:
C:\\some folder\some file.ext
if your 2 files are in the same directory it should be as simple as making the link:
./filename.ext
or possibly in windows:
.\filename.ext
some programs are picky about the direction of the slash.
|