When running the standalone application, the forward/back buttons on the left side of my mouse don`t work.
The Backspace key doesn`t work either as the Back function...
> When running the standalone application, the forward/back buttons on the left side of my mouse don`t work.
>
I noticed this also..would be handy as I use it all the time
OK. We will work on them. Frankly, I am not 100% sure if we will be able to implement this, because I tried to do the same in Offline Explorer some time ago. Anyway, we will try it when preparing Beta 2.
Best regards,
Oleg Chernavin
MP Staff
Not sure what language you`re using but here`s how I trapped the message...
BEGIN_MESSAGE_MAP(CUIView, CScrollView)
//sanitize_seed_3pncu3gsfk4k84s8ws8gkgkk{sanitize_seed_3pncu3gsfk4k84s8ws8gkgkk{sanitize_seed_3pncu3gsfk4k84s8ws8gkgkkAFX_MSG_MAP(CUIView)
ON_MESSAGE(WM_APPCOMMAND, OnAppCommand)
//sanitize_seed_3pncu3gsfk4k84s8ws8gkgkk}sanitize_seed_3pncu3gsfk4k84s8ws8gkgkk}sanitize_seed_3pncu3gsfk4k84s8ws8gkgkkAFX_MSG_MAP
END_MESSAGE_MAP()
LRESULT CUIView::OnAppCommand(WPARAM, LPARAM lParam)
{
switch( GET_APPCOMMAND_LPARAM(lParam) )
{
case APPCOMMAND_BROWSER_BACKWARD:
// Go back code...
return TRUE;
case APPCOMMAND_BROWSER_FORWARD:
// Go forward code...
return TRUE;
}
return FALSE;
}
Wow! Thank you very much! This will help us to implement this feature faster.
Oleg.
Pretty minor, but I noticed tonight that when exported to a .EXE, the forward/back using the mouse buttons don`t work.
OK. We will do our best to add it in 1.1 version.
Oleg.