How do I use active object in python for s60? can anybody give me a code example?
Asked
Active
Viewed 201 times
1 Answers
1
There's a simple example here:
def run(self):
self.lock = e32.Ao_lock()
self.lock.wait()
# restore old title etc. and finish
def exit_callback(self):
# unlocks the application and lets it finish
self.lock.signal()
and that same URL also contains a detailed explanation (and more info, tutorial and otherwise, on Python for S60).

Alex Martelli
- 854,459
- 170
- 1,222
- 1,395
-
I write this in the source code and then run it On pythonScriptShell – Day_Dreamer Aug 01 '10 at 18:41
-
there is an option to run script – Day_Dreamer Aug 01 '10 at 18:41