|
Revision 73, 505 bytes
(checked in by GrAnd, 2 years ago)
|
+ Script: Reimplemented 'print' command
|
| Line | |
|---|
| 1 |
@title EXP bracketing |
|---|
| 2 |
@param a Number of �ps |
|---|
| 3 |
@default a 2 |
|---|
| 4 |
@param b Step size (1/3EV) |
|---|
| 5 |
@default b 3 |
|---|
| 6 |
|
|---|
| 7 |
if a<1 then let a=2 |
|---|
| 8 |
if b<1 then let b=3 |
|---|
| 9 |
|
|---|
| 10 |
sleep 1000 |
|---|
| 11 |
|
|---|
| 12 |
print "Preparing..." |
|---|
| 13 |
click "erase" |
|---|
| 14 |
for n=1 to a*b |
|---|
| 15 |
click "left" |
|---|
| 16 |
next n |
|---|
| 17 |
|
|---|
| 18 |
for s=1 to a*2 |
|---|
| 19 |
print "Shoot", s, "of", a*2+1 |
|---|
| 20 |
shoot |
|---|
| 21 |
for n=1 to b |
|---|
| 22 |
click "right" |
|---|
| 23 |
next n |
|---|
| 24 |
next s |
|---|
| 25 |
|
|---|
| 26 |
print "Shoot", a*2+1, "of", a*2+1 |
|---|
| 27 |
shoot |
|---|
| 28 |
|
|---|
| 29 |
print "Finalizing..." |
|---|
| 30 |
for n=1 to a*b |
|---|
| 31 |
click "left" |
|---|
| 32 |
next n |
|---|
| 33 |
click "erase" |
|---|
| 34 |
|
|---|
| 35 |
end |
|---|