Jump to content

Featured Replies

  • 2 weeks later...
  • Replies 63
  • Views 10.2k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • 4 weeks later...
  • 1 year later...
  • 1 month later...
  • 3 weeks later...
comment_66903
On 6/3/2020 at 8:33 PM, Adam200214 said:

Not the best written thing in the world, however wrote it for Divination whilst I was learning more on JFrame's/Components. If you're gonna use would advise improving it a bit..

 

Ain't providing any free help on getting this working, if you need help and are happy to pay, hmu on Discord @ NULL#1111

 

 

Hidden Content

  • Give reaction or reply to this topic to see the hidden content.

 

 

Preview:

 

 

Hidden Content

  • Give reaction or reply to this topic to see the hidden content.

 

 

 

 

Edit:

Working BackGround.java - replace link with your own., upload 'main.gif' found in the package and replace link

public class BackGround extends JPanel {
private ImageIcon loading;
    public BackGround() {
        super();
        String loadLink = "link here";
        URL ajaxLoad = null;
        try {
            ajaxLoad = new URL(loadLink);
        } catch (MalformedURLException e3) {
            e3.printStackTrace();
        }
        loading = new ImageIcon(ajaxLoad);
    }

    @Override
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        loading.paintIcon(this, g, 0, 0);
    }
}

 

 

Credits too King Fox, took a couple things from his launcher because I was in a rush to get it done lmao

ty

  • 1 month later...
  • 2 weeks later...
  • 3 weeks later...
  • 1 month later...
comment_73573
On 6/3/2020 at 8:33 PM, Adam200214 said:

Not the best written thing in the world, however wrote it for Divination whilst I was learning more on JFrame's/Components. If you're gonna use would advise improving it a bit..

 

Ain't providing any free help on getting this working, if you need help and are happy to pay, hmu on Discord @ NULL#1111

 

 

Hidden Content

  • Give reaction or reply to this topic to see the hidden content.

 

 

Preview:

 

 

Hidden Content

  • Give reaction or reply to this topic to see the hidden content.

 

 

 

 

Edit:

Working BackGround.java - replace link with your own., upload 'main.gif' found in the package and replace link

public class BackGround extends JPanel {
private ImageIcon loading;
    public BackGround() {
        super();
        String loadLink = "link here";
        URL ajaxLoad = null;
        try {
            ajaxLoad = new URL(loadLink);
        } catch (MalformedURLException e3) {
            e3.printStackTrace();
        }
        loading = new ImageIcon(ajaxLoad);
    }

    @Override
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        loading.paintIcon(this, g, 0, 0);
    }
}

 

 

Credits too King Fox, took a couple things from his launcher because I was in a rush to get it done lmao

 

Create an account or sign in to comment