flashPlayerInternalFrame.setBounds(100, 100, 400, 280);
flashPlayerInternalFrame.setResizable(true);
flashPlayerInternalFrame.setVisible(true);
JFlashPlayer flashPlayer = new JFlashPlayer(JFlashPlayer.proxyComponentHierarchy());
flashPlayer.setControlBarVisible(false);
flashPlayer.load(SimpleFlashExample.class, "resource/Movement-pointer_or_click.swf");
flashPlayerInternalFrame.add(flashPlayer, BorderLayout.CENTER);
desktopPane.add(flashPlayerInternalFrame);
// Web Browser 2 internal frame, with a button on top
JInternalFrame webBrowser2InternalFrame = new JInternalFrame("Web Browser 2 with a JButton on top");
webBrowser2InternalFrame.setBounds(190, 190, 400, 280);