Hi,
I know it's probably a stretch getting a hold of this information, but I'm writing a small utility program that essentially acts as a touch gesture interpreter for touch-enabled Win7 PCs. So, the code I've got interprets the two-finger pan gesture, and converts it into a mouse-wheel scroll. It's really useful for programs with non-standard scrollbars, because windows 7 doesn't handle touch gestures in these programs automatically.
So far I've got it working many programs including Notepad, Visual Studio and Google Chrome, using the same, standard line of code:
SendMessage(foregroundHwnd, WM_MOUSEWHEEL, WHEEL_DELTA << 16 , 0);
This code selects the foreground window and sends a mouse-scroll message for one click up the page.
Whilst this code works in plenty of other applications, including ones that don't support touch gestures natively (like chrome and Visual Studio), I can't get it to work in Logos.
Would one of your developers be able to provide me with any insight here? I see this utility as a way to help the logos community.
Cheers!