Hier ist nun mein Quelltext: (ganz simpel gemacht)
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
public class Fenster extends Frame
{
public Fenster ()
{
super (" Lernpaket ");
Button one = new Button (" Test");
Button two = new Button (" Video");
Button three = new Button (" Test");
FlowLayout Buttons = new FlowLayout (FlowLayout.CENTER);
Panel pane = new Panel (Buttons);
pane.setLayout(Buttons);
Label L = new Label ("PROJEKT FA ST EM ");
add(pane);
pane.add(L);
pane.add(one);
pane.add(two);
pane.add(three);
one.setBackground(Color.pink);
two.setBackground(Color.pink);
three.setBackground(Color.pink);
L.setFont (new Font ("Monospaced", Font.BOLD,30));
setSize (500, 200);
setBackground(Color.white);
setVisible (true);
addWindowListener (new FensterLauscher());
}
class FensterLauscher extends WindowAdapter
{
public void windowClosing (WindowEvent e)
{
System.exit(0);
}
}
public static void main (String []args )
{
new Fenster();
Frame frame= new Fenster();
frame.show();
}
public void ButtonClick(ActionEvent e)
{
try {
Runtime.getRuntime().exec("C:\\Program Files\\QickTime\\QuickTimePlayer.exe Sample.mov");
} catch( IOException ex) {
// ...
}
}
}
Ich brauche eben , dass das Video sich nach dem click auf "VIDEO" öffnet! könnt ihr ma bitte gucken wie das genau zusammengehört? Ich rall da gerade gar nix mehr!