LetMeHolla Posted February 23, 2016 Posted February 23, 2016 How to put logo on my script anyone can help me? add my skype ole.opidig if you can
Zappster Posted February 23, 2016 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
LetMeHolla Posted February 24, 2016 Author 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