That would be so awesome! Will you give me directions on what I have to do to load it too? Thanks!!!!!!
Cut and paste from here into a plain text file using something like notepad.exe (UTF-8 bit characters). Save it with the file name "extend.lua" . Transfer that file to the /CHDK/SCRIPTS directory on your SD card. Go to the CHDK Scripts menu, select "Load script from file", find the EXTEND.LUA file in the popup window, press the "FUNC/SET" button to select, then Menu to exit the CHDK menu. After that, every time you press the shutter button while CHDK <ALT> mode is active, the script will run.
--[[
@title Extend
@param a time delay (sec)
@default a 2
@param s shots
@default s 5
--]]
if ( get_mode() == false ) then
set_record(1)
while ( get_mode() == false ) do sleep(100) end
end
sleep(a*1000)
for i=0, s do
shoot()
sleep(2000)
end
Update : And after you play with this for a bit, I suspect you are going to want a programmable delay between shots?