When I have a (skinny) bar set to alpha blend change on mouse over, it doesn't work if I mouse Over an eButton (might want to have a look at GeoButton code for this, I think).
You need to forward the mouse over message to the bar.
Logged In: YES user_id=953061
You probably want to change WM_MOUSEMOVE in EButton::wndProc, ebutton.cpp to do
::PostMessage(m_pPluginHost->Hwnd(), uMsg, wParam, lParam);
or modify _OnMouseMove so that it does the above. That should pass the alpha messages on.
I didn't write ths plugin, so I'm not sure if _OnMouseMove is necessary. :)
Logged In: YES user_id=892983
I'll take a look at this, because I have been maintaining the code. Thanks for the heads up meester jones.
Log in to post a comment.
Logged In: YES
user_id=953061
You probably want to change WM_MOUSEMOVE in
EButton::wndProc, ebutton.cpp to do
::PostMessage(m_pPluginHost->Hwnd(), uMsg, wParam, lParam);
or modify _OnMouseMove so that it does the above. That
should pass the alpha messages on.
I didn't write ths plugin, so I'm not sure if _OnMouseMove
is necessary. :)
Logged In: YES
user_id=892983
I'll take a look at this, because I have been maintaining
the code. Thanks for the heads up meester jones.