I have some browser flash game. In this game there are some players/objects, and I can steer one of them. I want to write bot for this game. Bot will 'read' the state of game (capturing the part of the screen and finding the positions of players), and steer my object (by java Robot).
And now I want to draw on screen on calculated positions of the object some circles. Just for debug purposes. I want to make sure if everything is okay. Circles of coure will move, just like players. But how to do that?
I can create big transparent window, and then I can draw debug, and I can read the game. But I can't steer the game, because browser isn't on top. If my browser would be on top, then I can't see debug drawings. I want solution in which my browser is on top, and my debug drawings are also visible on the browser.
Is it even possible?
Thanks