Jump to content

Logo


Recommended Posts

Posted (edited)

Call this in your onStart() (only needs to be set one time)

private BufferedImage img = null;
private void setBuffImage(){
try {
img = ImageIO.read(new URL("URL TO IMAGE"));
} catch (IOException e) { } }

Then, inside your onPaint():

if(img != null) g.drawImage(img, 0, 335, null);
Edited by Zappster
  • Like 1
Posted

or in scriptmanifest(logo = "imgurlink")

I have tried it will only show up when i click on the script

 

 

Call this in your onStart() (only needs to be set one time)

private BufferedImage img = null;
private void setBuffImage(){
try {
img = ImageIO.read(new URL("URL TO IMAGE"));
} catch (IOException e) { } }

Then, inside your onPaint():

if(img != null) g.drawImage(img, 0, 335, null);

Ty bro :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...