Filter and automation plug-in communication
Hello
I'm working on making a filter and an automation plug-in and stuck in a problem.
1. automation plug-in dose a job saving document and calling a filter.
2. filter shows up a dialog, and calls automation plug-in when user click on OK button
I found out that event occurs after filter done it's finishing process.
filter:
void DoFinish(void)
{
LockHandles();
WriteScriptParameters();
WriteRegistryParameters();
}
The listener, an automation plug-in catches the event filter made, and then reads the script parameters.
The problem is that:
The filter create an event when evoked from the menu,so automation plug-in catch that event and do the job.
But it does not make an event when evoked from automation plug-in, so automation plug-in does nothing.
Is there any workaround or solution for this?
thx in advance,
Kim YK