Simmt, aber die muss aber auch nicht static sein.

Stattdessen
Code:
    Test_panel panel = new Test_panel();
    cp.add(panel);

    setResizable(false);
    setVisible(true);
   
    panel.startIntro();
und

Code:
  public void startIntro()
  {
    Thread intro = new Thread(this);
    intro.start();
  }
Dann läuft's bei mir.