Hi all,
I have a plugin in C++ that starts an external process.
This process has UI and his event loop.
That event loop runs in external code so that I cant use the regular dialogproc to capture WM_KEYDOWN events.
After start we have mainly one direction comunication. plugin UI -> Photoshop
the plugin implements functions that the external process can use to talk to photoshop as well.
The photoshop UI works fine, anything happening there will not affect the plugin UI.
I thought that was the difficult part of the implementation but... I found no way to disable hotkeys in photoshop.
I know when to disable them because I am getting events in my plugin UI for it... but no idea which command should I use to prevent photoshop from getting the plugin Ui events as hotkeys.
Is something I can do in "AutoPluginMain" ?
I hope I could explain myself properly.
Thanks,
Javier