Wonderful, thank you! This has got me started nicely.
As I need the highest possible frame rate, I changed the script to use the press/release commands. It requires the camera to be set to continuous shooting mode before the script starts. The result is perfect for my needs. Thanks again.
-------------------------------
@title custom timer
@param t timer in seconds
@param b burst length in seconds
@default t 60
@default b 15
print t, "seconds custom timer"
sleep t * 1000
print "shooting a", b, "seconds burst"
press "shoot_full"
sleep b * 1000
release "shoot_full"
print "done"
end
---------------------------------
Greg