Search:

Type: Posts; User: Jams

Search: Search took 0.09 seconds.

  1. Replies
    5
    Views
    1,171

    Re: Question about KeyListeners

    Thank you for your help Norm. I have it working in a more manageable way now!
  2. Replies
    5
    Views
    1,171

    Re: Question about KeyListeners

    Well, the Player class is what I would like to add these KeyListeners to. That way the The Player receives a KeyEvent and respond accordingly.

    Right now the Canvas has a KeyListener, Controller....
  3. Replies
    5
    Views
    1,171

    Re: Question about KeyListeners

    I'm creating a class to represent a player in a very small game. The Player class extends Object and has a whole slew of functionality in the works. Originally, I created a Controller class that...
  4. Replies
    5
    Views
    1,171

    Question about KeyListeners

    Does anyone know if it is possible to add a key listener to an object that is not a Component or a subclass of a component?
    I would like to add a key listener to a self defined class, but I'm not...
  5. Replies
    21
    Views
    3,403

    Re: Issues with ascending number program

    For future reference, please use
    tags for code. It is much easier to read.

    Your braces for your if statements don't match up. it should look more like this:
    [code]
    if (condition)
    {
    //code
    }
  6. Replies
    18
    Views
    2,299

    Re: Need help adding background image (noob here)

    Anytime. I am willing to help whenever I can.

    --Jams
  7. Replies
    3
    Views
    1,312

    Re: Wanted to introduce myself first

    Welcome ITStudent02!

    I would be glad to help with anything that I can!

    --Jams
  8. Replies
    21
    Views
    1,807

    Re: My buttons will not work

    I lied.



    private String itemNumber;
    private String productName;
    private int unitsInStock;
    private double unitPrice;
    private double totalInventory;
    private String serialNumber;
  9. Replies
    21
    Views
    1,807

    Re: My buttons will not work

    I took a look at your code. I strongly recommend that you download an IDE such as Eclipse or NetBeans that will check your spelling. This is why I use Eclipse. (I couldn't spell to save my life)...
  10. Replies
    18
    Views
    2,299

    Re: Need help adding background image (noob here)

    Do you remember the paint() function?

    In the end it should look something like:

    paint (Graphics g)
    {
    g.drawImage(parameters)
    }

    You should just be able to use null in place of the image...
  11. Replies
    18
    Views
    2,299

    Re: Need help adding background image (noob here)

    No offense taken.

    Let me know if you need further help.
  12. Replies
    18
    Views
    2,299

    Re: Need help adding background image (noob here)

    Here it is:
    Removed due to one of the "helpers" only having one damn post. Don't want kids to steal my hard work. I guess I'll find help elsewhere.[/QUOTE]

    Whoa. Hey now. Don't be making...
  13. Replies
    18
    Views
    2,299

    Re: Need help adding background image (noob here)

    I am going to assume that GBFrame is extending JFrame. Correct me if I am wrong.

    Take a look at Container (Java 2 Platform SE v1.4.2) This is the container class which contains the all-powerful...
  14. Replies
    18
    Views
    2,299

    Re: Need help adding background image (noob here)

    Well, there are a couple of places that you could start. What do you have so far?
Results 1 to 14 of 15