[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: It is possible to emulate the mouse click?


I don't think it is reliably possible with gambas. (it is possible with
the command xdotool)
There is no need to fake a button press though
just trigger the button press manually..
btnOpenVirtKeyboard.Value = True

or Form1.btnOpenVirtKeyboard_Click()


i did:
  Shell "xdotool mousemove 10 1100 click 1"
and it works.

but I was forced to install xdotool.
My preference was to have it directly with some gambas3 "magic" without external tool.
but at the end, I got it.
Thanks all.


References:
It is possible to emulate the mouse click?roberto.premoli@xxxxxxxxxx
Re: It is possible to emulate the mouse click?Bruce Steers <bsteers4@xxxxxxxxx>