# automatic photographer, tested on nokia n70 with pys60 # by WarGame, wargame89@yahoo.it. http://vx.netlux.org/wargamevx import time import camera from graphics import * import appuifw fn=appuifw.query(u"how many photos do you want to take?","number") int=appuifw.query(u"interval in seconds?","number") print "Let's start!" while fn>0 : foto=camera.take_photo (size=(1024,768)) foto.save("e:\\Images\\foto"+str(fn)+".jpg") # external memory card print "-",fn,"at the end..." fn-=1 time.sleep(int) print "End!"