Posted By:
Miguel_Villares
Posted On:
Wednesday, November 6, 2002 12:00 PM
Working with Java Media Framework, I need to add an AWT component over the visual component which presents the playing video.
This component is obtained in the form:
Player player = Manager.getPlayer(anURL);
Component visualComponent = player.getVisualComponent();
I need to present an AWT component in front of the video during the reproduction.I tried putting the components into a Container an reordering them, but the video always is in front of the other components, hidding them.