i want to use the CEF to control a Flash Applikation, therefore i need a simulated MouseDown and KeySend Execute without Javascript. I searched very much but i didn't find a snipped. Just some tries (with offscreen):
managedCefBrowserAdapter.OnMouseButton(500, 500, 0, true, 2, CefEventFlags.LeftMouseButton);
or
MouseEvent a = new MouseEvent();a.Modifiers = CefEventFlags.LeftMouseButton;a.X = 500;a.Y = 500;
or
managedCefBrowserAdapter.SendKeyEvent(0, 0, 0);
Nothing works for me :(, thank u for help :)
This code works for me. Clicks once on the position 0, 0 (left-upper corner)