LetMeHolla Posted February 23, 2016 Share Posted February 23, 2016 How to put logo on my script anyone can help me? add my skype ole.opidig if you can Quote Link to comment Share on other sites More sharing options...
Zappster Posted February 23, 2016 Share Posted February 23, 2016 (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 February 23, 2016 by Zappster 1 Quote Link to comment Share on other sites More sharing options...
Deceiver Posted February 23, 2016 Share Posted February 23, 2016 or in scriptmanifest(logo = "imgurlink") Quote Link to comment Share on other sites More sharing options...
LetMeHolla Posted February 24, 2016 Author Share Posted February 24, 2016 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 Quote Link to comment Share on other sites More sharing options...