@Hillman12
Make sure there's
no empty line at the beginning of the script (1st line is "rem Author - Keoeeit"),
also append an
additional empty line at the script's end.
Select the whole script text, copy the selection to the Windows clipboard (Ctrl-C), open the Windows
Notepad and paste it (Ctrl-V);
save the file with
document type = "text file" and file code =
"ANSI" (NOT UTF-8 or Unicode...),
use a short name (e.g.
INTERVAL.BAS); copy this file to the \CHDK\SCRPTS folder...
Then select this script from the CHDK script menu, adjust the parameters (you should see them now) & start the script with the shutter...
This script maybe is not ideal for starting, you should try a smaller, simple script like the following:
rem Interval shooting
rem org by A630Lover, chdk.setepontos.com
@title Interval shooting
@param a Shoot count
@default a 10
@param b Interval (Minutes)
@default b 0
@param c Interval (Seconds)
@default c 10
t=b*60000+c*1000
if a<2 then let a=10
if t<1000 then let t=1000
print "Total time:", t*a/60000; "min", t*a%60000/1000; "sec"
sleep 1000
print "Shoot 1 of", a
shoot
for n=2 to a
sleep t
print "Shoot", n, "of", a
shoot
next n
end
...this small script should run on all CHDK cams & versions, you can also download it as attachement on this post....