Sharon Kimble <boudic...@skimble09.plus.com> writes: > Is it possible to have a link in file B to file A, which when double-clicked, > or C-c'ed, or some other form of automating it, causes file A to activate > please?
If I understand you correctly, you might be interested in elisp links. For example, [[elisp:(org-html-export-to-html)]] will execute org-html-export-to-html when the link is clicked. Of course this will export the current buffer, so you might want to create an elisp function that does what you want and call that function in your elisp link. Hope this helps!