| Reply | « Previous Thread | Next Thread » |
|
Hi ,
For N73 mobile how to write a pys60 program which start automatically(the user should not start manually the program ) when the mobile is switched on it monitors the incoming messages , it means that the program should run in background until the mobile is switched off. And one more how the program knows a new message is arrived, or there is any alert in pys60 which indicates the new message has arrived plz help me ![]() |
| safaltechnical |
| View Public Profile |
| Find all posts by safaltechnical |
|
Join Date: Oct 2007
Posts: 2,841
Location: Deva, Romania
Online
Forum Nokia Champion
|
|
|
You can use Ensymble's --autostart flag when creating the sis file to make the application start when the phone starts. Though it may not work, depending on the type of signing you use:
From the Ensymble documentation: Quote:
To listen for incoming SMS you need to bind inbox.Inbox() to it: Code:
#Waiting for an incoming SMS
import inbox, e32, appuifw
#Define the exit function
app_lock=e32.Ao_lock()
def quit():
app_lock.signal()
appuifw.app.exit_key_handler=quit
#Define the function to be executed when a message is received
def cb(id):
print "New message!"
i=inbox.Inbox()
#Now wait for the message:
i.bind(cb)
app_lock.wait()
|
|
Hi,
please refer this link http://discussion.forum.nokia.com/fo...d.php?t=148153. This might give you some idea about making a autostart app. Bye Jajal Mehul |
|
Hi,
It works only for symbian signed certificates Please tell me how to install those certificate and how to get those certificate there is any possibility with self signed one -- autostart doesnt work with self signesd certificates |
| safaltechnical |
| View Public Profile |
| Find all posts by safaltechnical |
|
Join Date: Oct 2007
Posts: 2,841
Location: Deva, Romania
Online
Forum Nokia Champion
|
|
Basically you have to pay 200$ to get a Publisher ID in order to apply for certification. The process is best described in The Complete Guide To Symbian Signed
|
|
Join Date: Feb 2008
Posts: 743
Location: Belo Horizonte, Brazil
Rafael T.
Offline
Forum Nokia Champion
|
|
|
I'll make a refer to a piece of a post made by jethro.fn, who defines perfectly the signing options:
Quote:
Hope it helps, Rafael. |
|
Join Date: Feb 2008
Posts: 2,542
Location: Bhavnagar, Gujarat, India
gaba88
Online
Forum Nokia Champion
|
|
hi safaltechnical
dont forget to have a look at the PyS60 Faq Thread It may be bit helpful also. Enjoy Pythoning Gaba88 Gargi Das- http://gargidas.blogsot.com Forum Nokia Python Wiki Learn Python at http://mobapps.org/PyS60 |
|
when incomming messege comes it will make sound .
but when phone in silent we see just light in lcd. bye |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Rate This Thread | |
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| Cannot find where the issue is, Bluetooth service discovery | newbietoprofessional | Mobile Java Networking & Messaging & Security | 3 | 2008-07-14 17:39 |
| bluetooth service not visible | rosenholzer | Mobile Java Networking & Messaging & Security | 0 | 2007-03-08 09:26 |
| Problem with service attribute propagation and service attribute retrieval | pfrey | Bluetooth Technology | 4 | 2006-09-05 16:15 |
| 6680 and bluetooth service profiles | ceruault | Mobile Java Networking & Messaging & Security | 1 | 2005-10-08 23:24 |