G
Guest
Gast
Ich versuche die ganze Zeit den Timer zu stoppen. Krieg ich aber nich hin. Könnt ihr mir bitte helfen??
Code:
public void linkTasteP()
{
tanimathe.setVisible(true);
tanimathe.setText("<< Mathematik <<");
tanimathe.setFont(new Font("SansSerif",Font.TRUETYPE_FONT,55));
javax.swing.Timer t= new javax.swing.Timer(1, new ActionListener()
{
int i=1;
public void actionPerformed(ActionEvent e)
{
tanimathe.setBounds(940-i++,630,445,60);
}
});
t.start();
}
Code:
protected JTextArea tanimathe=new JTextArea();