Heh - I'm a big supporter of the "operating expenses" part of nonprofits, so giving you a gift pre-fix is something I'm used to.
On another note, I'm using 1.3.0 3359 without any modifications.
I have attached a2500.csv with a few of the results.
I changed the 10000 to a variety of other numbers, and it still didn't change anything (500, 1000, 1500, 2000, 2500).
I'm not with my a1400's at the moment, but when I get to them tomorrow morning, I'll run it a few times and send over the csv for that one as well.
Thanks again!
EDIT: This is the latest lua I'm running (have the prints in there so I get a running update on the cam screen):
call_event_proc("SS.Create")
call_event_proc("SS.MFOn")
set_focus(1000)
f1=get_focus()
print("pre-shoot half")
print(f1)
sleep(1000)
press('shoot_half')
sleep(200)
f2=get_focus()
print("push-shoot half")
print(f2)
release('shoot_half')
sleep(1000)
f3=get_focus()
print("release-shoot half")
print(f3)
press('shoot_full')
sleep(200)
f4=get_focus()
print("post-full shoot")
print(f4)
release('shoot_full')
sleep(2000)
f5=get_focus()
print("post-full shoot release")
print(f5)
set_focus(2000)
f1=get_focus()
print("pre-shoot half")
print(f1)
sleep(1000)
press('shoot_half')
sleep(2000)
f2=get_focus()
print("push-shoot half")
print(f2)
release('shoot_half')
sleep(1000)
f3=get_focus()
print("release-shoot half")
print(f3)
press('shoot_full')
sleep(200)
f4=get_focus()
print("post-full shoot")
print(f4)
release('shoot_full')
sleep(2000)
f5=get_focus()
print("post-full shoot release")
print(f5)