TheScrub Posted August 18, 2013 Share Posted August 18, 2013 (edited) Was bored soo w/ee Ideas on how to use Have a area on your paint and call the method if a mouse action. Display the image instead of writing on a jframe or jpanel etc. many more ways! public void takePicture() throws AWTException { Robot r = new Robot(); BufferedImage screenShot = r.createScreenCapture(new Rectangle( Toolkit.getDefaultToolkit().getScreenSize())); Date d = new Date(); int currentHour = d.getHours(); // deprecated methods i don't know the new ones int currentMin = d.getMinutes(); // same as the Hour String format = null; if (currentHour >11){ format="PM"; } if (currentHour <12){ format="AM"; } try { ImageIO.write(screenShot, "JPG", new File("Script_Name"+currentHour+"_"+currentMin+format+".jpg")); } catch (IOException e) { e.printStackTrace(); } } Edited August 18, 2013 by TheScrub 1 Link to comment Share on other sites More sharing options...