On Fri 2017-02-17 15:38:16 -0500, Glen Duncan wrote:
> I would like to have mouse events from the G13 scroll window view in
> Eagle.
I don't know anything about "Eagle" or "G13 scroll window", but with
xdo, you can send mouse "clicks". mouse wheel-driven scrolling is
basically a series of "clicks", iiuc.
As the documentation for xdotool(1) says:
>> click [options] button
>> Send a click, that is, a mousedown followed by mouseup for the
>> given button with a short delay between the two (currently 12ms).
>>
>> Buttons generally map this way: Left mouse is 1, middle is 2, right
>> is 3, wheel up is 4, wheel down is 5.
so if what you care about is scrolling (and not the scroll bars
themselves), maybe you can just send these scroll-triggering events to
the window with xdotool?
--dkg