JPopupMenu and focus w/ multiple JVMs
I have a focus question. We have panels from 2 different JVMs being displayed next to each other. There is a right click menu that can be displayed in JVM 1. It has a sub menu that appears to the right of it and can overlay the panel in JVM 2. If the user moves the cursor out of the menu in JVM 2, focus is lost and the entire JPopupMenu closes.
Do you know of any way to prevent this without communication between the JVMS? I also would rather not use a JDialog if possible.

