Archive for tag: screencapture

Applescript: Bildschirmfoto alle 30 Sekunden (nur das Geräusch verrät einen ;-))

25 February, 2010 (02:25) | OS X | By: hubi

Das hier als AppleScript-File abspeichern Code zum markieren einmal anklicken Code im Skript-Editor öffnen set dFolder to "~/Desktop/screencapture/" do shell script ("mkdir -p " & dFolder) repeat 2 times set dateTime to do shell script "date +%Y%m%d_%H%M%S" do shell script ("screencapture " & dFolder & dateTime & ".png") -- Capture screen. delay 2 -- Wait [...]