0

我正在使用 jFlashPlayer(目前已被 VersaEdge Software 停产)。

我在 jWindow 中显示 FlashPanel 并希望在其上放置一个 glassPane 以在 Flash 图像上绘制,但是当 FlashPanel 可见时 glassPane 不起作用。当 FlashPanel 不可见/未启动时,glassPane 工作正常。

代码的相关部分如下:

public displayWindow() throws AWTException{

    showOnScreen(1, this);

    createFlashPanel();

    glass = new JPanel()
    {
        public void paintComponent(Graphics g) 
        {
            g.setColor(Color.RED);
            g.fillOval(point.x, point.y, 10, 10);
        }
    };

    glass.setOpaque(true);
    this.setGlassPane(glass);
    glass.setVisible(true);
}

在哪里

void createFlashPanel() {
    com.jpackages.jflashplayer.FlashPanel.installFlash("6");
    String flashVersionRequired = "9";
    try {
        String flashFilePath = "FarmacistDispensaryWS.swf";                                
        if (!com.jpackages.jflashplayer.FlashPanel.hasFlashVersion("9")) {
            flashFilePath = "FarmacistDispensaryWS.swf";        
            flashVersionRequired = "6";
        }
            com.jpackages.jflashplayer.FlashPanel.setRequiredFlashVersion(flashVersionRequired);

    FlashPanel = new FlashPanel(new File(flashFilePath));    
    } catch (JFlashLibraryLoadFailedException e) {            
        exitErrorr("A required library (DLL) is missing or damaged.");
    } catch (FileNotFoundException e) {
        exitErrorr("Failed to find SWF file specified.");
    } catch (JFlashInvalidFlashException e) {
        exitErrorr("Required version " + flashVersionRequired + " of Flash is not installed.");
        }

    this.getContentPane().add(FlashPanel, BorderLayout.CENTER);

    FlashPanel.setFlashCallObject(this);        

    FlashPanel.addFlashPanelListener(this);

    FlashPanel.setVariables("myGreeting=hi&myNumber=1&myVar=good%20job");    
}

(直接取自他们提供的示例)和

public static void showOnScreenn( int screen, displayWindow displayWindow )
{
    GraphicsEnvironment ge = GraphicsEnvironment
        .getLocalGraphicsEnvironment();
    GraphicsDevice[] gs = ge.getScreenDevices();
    if( screen > -1 && screen < gs.length )
    {
        gs[screen].setFullScreenWindow(displayWindow);
    }
    else if( gs.length > 0 )
    {
        gs[0].setFullScreenWindow( displayWindow );
    }
    else
    {
        throw new RuntimeException( "No Screens Found" );
    }
}

此代码在两个监视器上运行。一个监视器用于控制 Flash 文件(代码未显示),另一个监视器(这个)用于显示它。glassPane 在另一台显示器上工作正常,并且在这台显示器上工作 IFF FlashPanel 未启动/不可见。

Flash 文件运行良好,并且可以使用提供的代码按预期工作 - 这不是我的问题。

jFlashPlayer(库等)的所有支持文件的副本可以在http://java-flash-player-jflashplayer.soft32.com找到

提前致谢!

4

0 回答 0