August 3, 201312 yr I used 25sittin25m's screen cap tutorial to capture the screen in my script, but I want to auto-create a folder in the onStart method so I have a place to put the screenshots, and I don't know how to do that. Can anybody help me with this? Thanks The tutorial I followed is here: http://osbot.org/forum/topic/7315-capturing-the-screen/ Edited August 3, 201312 yr by Chaotic
August 3, 201312 yr It's in the thread bud, second partition of code. Ohh wait, you want to create a folder to put the screenies in, not an existing folder? Something like: File screenies = new File("Screenshots"); screenies.mkdir(); Untested, should work in theory. Edited August 3, 201312 yr by Pseudo
August 3, 201312 yr Author It's in the thread bud, second partition of code. Ohh wait, you want to create a folder to put the screenies in, not an existing folder? Something like: File screenies = new File("Screenshots"); screenies.mkdir(); Untested, should work in theory. Thank you, I will try this out