Search:

Type: Posts; User: handuel

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    1,449

    Re: live minecraft map

    There is a way of getting the minecraft game source code (that's how mods are made) which you could edit so it sends data to your website,
    you can use this program to decompile the game code and...
  2. Replies
    8
    Views
    2,061

    Re: New to Java. Looking for help, not a handout

    This is a really common error with minecraft, I get it all the time with no plugins, if your running the server with more memory try stopping that
  3. Re: Applet isn't showing up. Perhaps it's a browser fault.

    I got it to run from your zip file, the java code is fine, you have just messed up a bit in the html, I've never made an applet before but I guessed there shouldn't be multiple applet tags, so I...
  4. Replies
    3
    Views
    2,190

    Re: Java GUI plug-in

    I don't know of an addon for eclipse but you could download the nebeans IDE, that comes with a pretty good gui builder.
  5. Thread: Help lol

    by handuel
    Replies
    1
    Views
    1,419

    Re: Help lol

    To learn how to do this in java you have to really understand how object orientated programming works, I will try and explain it here but watching some tutorials or reading some reference books will...
  6. Re: Intergrate a JMeu bar into ubuntu 11.10 untiy's global menu bar.

    Thankyou, I had not researched that, and hadn't even thought of it, I am looking into it now, and I think this is probably the way to go.
  7. Intergrate a JMeu bar into ubuntu 11.10 untiy's global menu bar.

    I am creating a java application that has a simple menu bar (file, edit, view etc.), and I am using it on the ubuntu operating system, that uses the unity user interface, this has menu bar's similar...
  8. [SOLVED] Re: Issue with mouse listeners in a custom JComponent

    Thankyou very much copeg, changing the layout manager does indeed fix the problem. For refference for any with a similar problem, to fix it all I had to do was edit my test class(my main class), so...
  9. [SOLVED] Re: Issue with mouse listeners in a custom JComponent

    Thankyou very much for the quick replies I will try copegs answer, but while I do that, here is the code for the ImageUtilities class norm:


    public class ImageUtilities {

    public static...
  10. [SOLVED] Issue with mouse listeners in a custom JComponent

    I am attemting to make a custom button class by extending JComponent, my code looks like this:


    /*
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    ...
  11. Re: Error writing to an array with the static modifier.

    I've worked out what was wrong, the array inilalizer was not static, but for some reason it did not put an error when the array was declared, it just created an array with the length of zero. Sorry...
  12. Re: Error writing to an array with the static modifier.

    PS, I tried running without the static modifier and IT WORKED PERFECTLY, unfortunately the variable is then useless to me because I can't refer to it in my method.
  13. Error writing to an array with the static modifier.

    I have an array of intergers that I write data to in a for loop, they have the static modifier, so I can refer to them in another method in another class, I don't really know what the static modifier...
  14. [SOLVED] Re: menu screen for a program, anyone know a way of writing the code more elagantly.

    I think I've solved it, I'm messing around with card layouts and they seem to work.
    Thankyou mr777 for all your help.
    Once I've finished I will post the code, so people can tell me if it's an...
  15. [SOLVED] Re: menu screen for a program, anyone know a way of writing the code more elagantly.

    the answer you gave requires opening a new frame/window when a button is clicked. On windows, when a window is opened, the image of the frame zooms outward from the centre of the screen, before...
  16. [SOLVED] Re: menu screen for a program, anyone know a way of writing the code more elagantly.

    Still got a problem :O
    If a new frame opens, windows plays the "window openy animation." when the window kind of zooms up to the position it is meant to be in. Is there any way of stopping this.
  17. [SOLVED] Re: menu screen for a program, anyone know a way of writing the code more elagantly.

    Thanks, I worked out how to to that, after a bit... [embarrassed] thnx.
  18. [SOLVED] Re: menu screen for a program, anyone know a way of writing the code more elagantly.

    lol, I don't really know how to do that.
    Although if I work it out it is a good idea.
  19. [SOLVED] menu screen for a program, anyone know a way of writing the code more elagantly.

    I'm attempting to write a menu screen for a program, and am a complete noob at swing. I am using JLabel's to display the graphics that I have chosen for the buttons. At the moment the code for...
Results 1 to 19 of 20