AppleScript C Perl Shell Xcode Other

Delay release for Canon cameras

Post Reply
coding / applescript     Views: 1365Prev .. Next
Delay release for Canon camerasPosted: Sunday, June 20, 2010 [02:47:50] - 1
Posted by:MichaelPosts: 1
If you're using Canon Remote Capture software for remote release you may want to use a Task shooting or write a small app to delay a single release, say to take a picture of you or a group where you want to be in a picture as well.

It took me five minutes to write a small script. You can save it as .app and use from any folder.
Adjust a delay according to your needs.
View Codetell application "RemoteCapture Task.app"
activate
end tell
-- delay in seconds after you start the program
delay 9
tell application "System Events"
tell process "RemoteCapture Task"
keystroke "r" using {command down}
end tell
end tell


it's that easy
RE: Delay release for Canon camerasPosted: Sunday, June 20, 2010 [14:34:58] - 2
rootPosted by:rootMember Since:
June 16 2010
Posts: 357
Just to add a feature to this applescript, you could run a loop to keep on taking pictures until app is closed:

View Codetell application "RemoteCapture Task.app"
activate
end tell
-- delay in seconds after you start the program
delay 9
set progEnd to false
tell application "System Events"
tell process "RemoteCapture Task"
repeat until progEnd is true
keystroke "r" using {command down}
-- this is delay between shots
delay 5
end repeat
end tell
end tell


and buttons could be added after each loop "Cancel" "OK" "Stop" etc.There's no place like ~
coding / applescriptPrev .. Next
 
Post Reply
Home - Coding: AppleScript C Perl Shell Xcode Other
Our Telegram Group