Hi!
I saw this: http://wiki.forum.nokia.com/index.ph...mera_events%3F
Is there a way to watch when the camera application (on N95) is exited?
I'm using the following to launch the camera from the web browser:
def handler(req):
from mod_python import apache, util
import e32
try:
e32.start_exe('z:\\system\\apps\\cammojave.exe','',1)
return apache.OK
except Exception, e:
req.status = 404
return apache.OK
Now, can I make it so that when the camera app is exited the browser is directed to a predefined url?



