I had never actually bothered to make use of the _Notify until you
mentioned it, and realized that it is completely useless as it is *never*
fired. I am having serious problems even locating where such
Interesting - I'm getting the event firing. This control only works under
OEM - so maybe that's the problem?
I have the following code in my _Notify handler:
sub Editor_Notify {
my (%evt) = @_;
if ($evt{-code} == Win32::GUI::Scintilla::SCN_MARGINCLICK)
{
if ($evt{-margin} == 2) {
# Manage Folder
$Editor->FolderEvent(%evt);
# caret visible
$Editor->ScrollCaret();
}
}
I think most (if not all) of this code came from one of the examples.
Cheers,
jez.