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