I\'ve got a simple program which atm displays a transparant window with an image on it, which is always on top of other windows. Is it possible to direct input past my app s
I don't think you can do it easily, this because after that your OS has dispatched the mouse click to the Java application you can't dispatch that again back to activate whatever is beneath the Java application.
You could do it easily if everything is inside just one Java application but not with separate environments.