click "right" not working - Script Writing - CHDK Forum

click "right" not working

  • 2 Replies
  • 3299 Views
click "right" not working
« on: 15 / October / 2008, 12:03:31 »
Advertisements
I've made  script for EV bracketing
Code: [Select]
@title Bracketing
@param a EV step size
@default a 3
@param b Number of shots
@default b 3

rem "enter EV compensation in menu!!"

print "Starting..."
print "-----------"
print "Initializing EV compensation..."

for s=1 to (((b-1)/2)*a)
  click "left"
next s

for s=1 to b
  print "Shooting ", s, " of ", b, "..."
  shoot

  for t=1 to a
    click "right"
  next t

next s

print "--------"
print "Finished"

end
, but tht click "right" function seems to not work. On my IXUS60 it just do nothing (shooting the rest of the photos underexposed at the same EV value) ....

*

Offline zeno

  • *****
  • 891
Re: click "right" not working
« Reply #1 on: 15 / October / 2008, 12:18:22 »
You probably need to put a "sleep x" (where x is some number of milliseconds - say 500) after the "shoot" to allow the camera to deal with the photo it's just taken.
A570, S100, Ixus 127
Author of ASSIST, STICK, WASP, ACID, SDMInst, LICKS, WICKS, MacBoot, UBDB, CFGEdit

Re: click "right" not working
« Reply #2 on: 15 / October / 2008, 12:24:05 »
You probably need to put a "sleep x" (where x is some number of milliseconds - say 500) after the "shoot" to allow the camera to deal with the photo it's just taken.

Thank you....it worked ... :-)

 

Related Topics