So, in my last question ("Can't figure out how to overlap images in java") I was kindly advised to utilize layout managers and the JLayeredPane. However, after studying the demos, and forming my own code, I have a whopping 34 compiler errors. The compiler errors are consistently "" so there's probably something wrong with importing. However I copied the import list exactly from the LayeredPane Demo. Once again, I am stumped. And also once again, I thank anyone in advance for advice!

import javax.swing.*;
import javax.swing.border.*;
import javax.accessibility.*;

import java.awt.*;
import java.awt.event.*;


public class SlotAnimatorTest extends JPanel
{
  JPanel pane = new JPanel ();
  pane.setPreferredSize(new Dimension(1500, 1500));
  JPanel slotAnim;

  private JPanel showSlotAnimators ()
  {
    slotAnim = new JPanel ();

    SlotAnimator a0 = new SlotAnimator (45);
    SlotAnimator a1 = new SlotAnimator (90);
    SlotAnimator a2 = new SlotAnimator (180);

    slotAnim.setLayout (new GridLayout (3,0,20,30));
    slotAnim.add (a0);
    slotAnim.add (a1);
    slotAnim.add (a2);

    return slotAnim;
  }

  ImageIcon background = new ImageIcon ("/Users/haleywight/Documents/slotmachine.png");
  JLabel bG = new JLabel (background);
  bGsetBounds(1500, 760, background.getIconWidth(), background.getIconHeight());
  pane.add (bG, newInteger(0),0);

  pane.add (showSlotAnimators (), newInteger (1));

      private static void createAndShowGUI() 
      {

        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JComponent newContentPane = new SlotAnimatorTest();
        newContentPane.setOpaque(true); //content panes must be opaque
        frame.setContentPane(newContentPane);

        //Display the window.
        frame.pack();
        frame.setVisible(true);
     }

  public static void main (String [] args)
    {
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
            }
        });
    }

}
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

This has nothing to do with JLayeredPane and much to do with basic Java. You can't call a method in the class and outside of a method or constructor or static/non-static initializer blocks.

link|improve this answer
feedback

Following statements must be placed inside the method.

bGsetBounds(1500, 760, background.getIconWidth(), background.getIconHeight());
pane.add (bG, newInteger(0),0);
pane.add (showSlotAnimators (), newInteger (1));
link|improve this answer
1  
There are more misplaced method calls than that actually, but 1+ because you got most of them. :) – Hovercraft Full Of Eels Sep 26 '11 at 2:39
@HovercraftFullOfEels That's true :) and I saw your post that cover everything. – AVD Sep 26 '11 at 2:42
Awe man, that was a silly mistake to say the least. I fixed it by creating putting the statements in the constructor. Fixed code ` public SlotAnimatorTest () { pane.setPreferredSize(new Dimension(1500, 1500)); pane.add (b, new Integer(0)); pane.add (showSlotAnimators (), new Integer (1)); } public static void main (String [] args) { javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { SlotAnimatorTest t = new SlotAnimatorTest (); t.createAndShowGUI(); } }); } ` – hmw Sep 26 '11 at 2:59
However, now it compiles (much thanks to your help) all that appears is a small grey screen – hmw Sep 26 '11 at 3:01
2  
@hmw: in fact best to create and post an sscce. Please click on the link to read more about this very useful animal. – Hovercraft Full Of Eels Sep 26 '11 at 3:09
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.