| Reply | « Previous Thread | Next Thread » |
|
#hi all
#when i try this; import inbox S=inbox.Inbox s.sms_messages()[0] #AttributeError:'builtin_function_or_method'object has no #attribute 'sms_messages' #why this is so??? #thnx in advance |
|
It should be instead like this
Code:
import inbox box = inbox.Inbox() msg = box.sms_messages() IDEAS is all they need but still they think only Genius can give them that. |
| shubhendra |
| View Public Profile |
| Find all posts by shubhendra |
|
i am getting same attribute error.
how could i find out attributes of modile inbox? using, dir(inbox) command correct?? then i did not find sms_messages in the attributes.... what can i do now? |
|
Quote:
So for the following you can get the attributes Code:
import inbox box = inbox.Inbox() dir(box) Croozeus |
|
hi croozeus,
i checked with dir(inbox.Inbox)it is giving, ['__call__', '__class__', '__cmp__', '__delattr__', '__doc__', '__getattribute__ ', '__hash__', '__init__', '__name__', '__new__', '__reduce__', '__repr__', '__s elf__', '__setattr__', '__str__'] what to do?? |
|
Hmph, Did I tell you dir(inbox.Inbox) or dir(box) ? Best Regards, Croozeus |
|
Join Date: Oct 2007
Posts: 2,841
Location: Deva, Romania
Offline
Forum Nokia Champion
|
|
In other words, the two brackets make a difference with the dir operation.
Code:
dir(inbox.Inbox) Code:
dir(inbox.Inbox()) |
|
hay bogdan and croozeus
u are correct ,i got sms_messages. now one problem is that, i want to read Bluetooth messages in INBOX. for nokia 6600 bluetooth files sent by PC are residing at INBOX. So how could i read the same? with sms_messages bluetooth messages are not getting Read/counted. thnxs again |
|
Quote:
We have discussed this topic earlier several times, Its not possible to read the Bluetooth messages using the Inbox module (or by any means that I know) ![]() May be you need an extension or add a feature request. Best Regards, Croozeus |
|
ok .
But if i am having bluetooth messages in INBOX folder then where it has not been recognized by inbox module?? what is the difference in sms and bluetooth messages properties? |
|
import inbox
S=inbox.Inbox s.sms_messages()[0] S or s ? import inbox s=inbox.Inbox() s.sms_messages()[0] |
|
ya that was my typing mistake while testing i typed correctly...
and also i got answer ...from this thread.. |
|
dir(inbox.Inbox())
has worked for me,.. |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Rate This Thread | |
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| The problem about the audio module of the game engine | vincent.lee | Symbian Media (Graphics & Sounds) | 2 | 2008-03-15 08:22 |
| Creating MMS to Inbox problem | mikkoiv | Symbian Networking & Messaging | 4 | 2007-12-10 14:58 |
| Carbide.j 1.5 and Netbeans 5.5 beta 2 | ovjo12 | Mobile Java Tools & SDKs | 5 | 2007-06-11 06:43 |
| Recognizer on 3rd, problem with inbox | Tatanka.nbr1 | General Symbian C++ | 16 | 2006-08-30 07:35 |
| No module named inbox | nibss | Python | 1 | 2006-05-31 01:14 |