Hi all.
Can anybody help with a problem I have at all?
I borrowed a script from Deesbek on another message board which gives thus;
and it works really well. But................I'd like to improve it.
Before actually beginning I'd like the script to ask for a few more parameters;
Thanks.
Can anybody help with a problem I have at all?
I borrowed a script from Deesbek on another message board which gives thus;
AppleScript:
set save_location to ¬
(choose folder with prompt "Choose where to save screenshots")
repeat with shotcount from 1 to 100
do shell script "screencapture " & ¬
quoted form of POSIX path of save_location ¬
& "screen" & (shotcount as string) & ".jpg"
delay (60 * 1) -- delay one minute
end repeat
Before actually beginning I'd like the script to ask for a few more parameters;
- 1. The size/position of the screenshot, (for example I'd like a set size starting at x,x coordinates).
- 2. The frequency.
- 3. The shotcount.
Thanks.