Results 1 to 3 of 3
- 11-09-2009, 10:17 PM #1
Member
- Join Date
- Nov 2009
- Posts
- 9
- Rep Power
- 0
javax.media.Player and JMenu problem
Hello,
I'm writing some program for video streaming using JMF and I've got a problem with javax.media.Player and JMenu used in my application. As you can see on screens below when Player is active it's always covering JMenu. Is there any solution to force Player "stay down" under other components?
Hello,
I'm writing some program for video streaming using JMF and I've got a problem with javax.media.Player and JMenu used in my application. As you can see on screens below when Player is active it's always covering JMenu. Is there any solution to make Player "stay down" under other components?
Without running Player: img.polsl.eu/i,eb02f.jpg
After Player starts to work (the black thing over the menu is a Player component from player.getVisualComponent()): img.polsl.eu/i,35b5b.jpg
Sorry but I can't post images yet :(
- 11-09-2009, 11:46 PM #2
Senior Member
- Join Date
- Jul 2009
- Posts
- 1,158
- Rep Power
- 5
Sounds like the Player is an AWT component which always paints on top of other Swing components.
However, if the only issue is the popup menu then you should be able to use:
Otherwise you will need to update the JDK to a newer version as indicated in the article on Mixing Heavyweight and Lightweight Components (revisited)Java Code:JPopupMenu.setDefaultLightWeightPopupEnabled(false);
Last edited by camickr; 11-09-2009 at 11:49 PM.
- 11-10-2009, 11:49 AM #3
Member
- Join Date
- Nov 2009
- Posts
- 9
- Rep Power
- 0
Similar Threads
-
Where is "javax.media.j3d"?
By ScottVal in forum Advanced JavaReplies: 5Last Post: 09-09-2010, 10:01 AM -
help with designing Java program:file browser w/ regex search, possibly media player?
By jmd9qs in forum New To JavaReplies: 0Last Post: 11-04-2009, 09:09 PM -
javax.xml.ws.Service problem
By magnum99 in forum Advanced JavaReplies: 0Last Post: 10-08-2009, 06:10 PM -
javax.media.j3d.IllegalRenderingStateException
By fred in forum Advanced JavaReplies: 1Last Post: 07-24-2007, 01:53 AM -
javax.media library
By Heather in forum EclipseReplies: 1Last Post: 07-08-2007, 12:15 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks