Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Paul,
We have had extensive cut/copy/paste, callback based, adjustments to the editor in place for years.Our paste callback does indeed fire for the Ctrl drag and drop scenario that I believe you were asking about.
As an attempt to address your question, I'll share the following:
Our callback definitions for copy & paste are the following which are probably the same approach as you have in place:
At the front of our callbacks, we have the following evals that we uncomment when we want to monitor the activity of the callback:
Those evals just shoot their message into an editor eval window which is less disruptive to the excution flow of the editor than using a response command.So, perhaps it is your use of the respone command that might be masking notification of the paste callback being invoked.
Testing over the years has shown that even the above evals outputing to a window can be too disruptive to allow you to see accurately what the sequence of activity is. For cases like that, we resort to an approach like that shown here below to output messages into a file which can be reviewed after the test scenario os over:
Hopefullly, you'll find this helpful.
Bob Beetcher