-
-
Save wilbeibi/a53df070a5426529e26b92b83a466e22 to your computer and use it in GitHub Desktop.
Revisions
-
jonobr1 revised this gist
May 8, 2015 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,6 @@ do shell script ("mkdir -p " & dFolder) set i to 0 repeat 960 times do shell script ("screencapture " & dFolder & "frame-" & i & ".png") delay 30 -- Wait for 30 seconds. set i to i + 1 -
jonobr1 created this gist
May 1, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ set dFolder to "~/Desktop/screencapture/" do shell script ("mkdir -p " & dFolder) set i to 0 repeat 960 times set tTime to do shell script "date +%H%M%S" do shell script ("screencapture " & dFolder & "frame-" & i & ".png") delay 30 -- Wait for 30 seconds. set i to i + 1 end repeat