rem Autor: gope rem Inverted remote USB switch script with burst/review time control. rem By fudgey on A570IS (Digic III), should work an other models as well. rem Usage: start script (with USB remote enabled from script menu), rem press USB shutter. Camera will shoot when you release shutter. rem Note: this is not nearly as accurate for syncing as the SDM build. rem Increase review time to see shot review. If in continous drive mode, rem camera will shoot a burst of images instead of reviewing. @title Inverted Remote @param a Burst/Review time (s) @default a 0 @param b safety sleep (0.1 s) @default b 3 if a<1 then a=100 else a=a*1000 if b<0 then b=0 else b=100*b :presswait do until is_key "remote" press "shoot_half" sleep b do until not (is_key "remote") press "shoot_full" sleep a release "shoot_full" release "shoot_half" sleep b goto "presswait" end