A related question is [stackoverflow] here .
I am trying to do this, but I want to take this step one step further. I want to open an arbitrary file using the default editor for the file type. From now on, I want my user to be able to interact with the file, as usual, or continue to work in my application. An extension is what happens after a user completes editing. Is there a way to capture the closing event (and ideally save) from an external application and use it as a trigger to do something else? For my purposes, tracking the closure of an external application would do.
I can do this in a specific case. For example, I can open an instance of Word from my application and track events that interest my application. However, I want to cancel my application from Word.I want my users to be able to use any document editor of their choice, and then manage the storage of a file that is being edited discretely behind the scenes.
source share