okay, sorry to ask again, you mean to use menu istead of listbox?
Because menu is not blocking the main thread?
Type: Posts; User: max2k5; Keyword(s):
okay, sorry to ask again, you mean to use menu istead of listbox?
Because menu is not blocking the main thread?
Okay.
But could you explain what you mean with "menu options"?
so do i need to use threading to let the network code in the background be processed meanwhile the user is chosing an item from the listbox?
br,
max
Hi,
I'm working on a networked application with Python1.4.4 on a N95.
The problem is, that while being in a ListBox- selection (filebrowser2.py, from the Nokia Python examples), all the...
It's very strange, even if "Multimedia" is set to ask, he never even opens anything like a question window...
Okay, this is the code i use for taking the picture:
CameraCanvas(CameraMIDlet midlet){
this.midlet=midlet;
exitCommand=new Command("Exit",Command.EXIT,1);
addCommand(exitCommand);...
Trying the nokia mmapi picture taking example http://www.forum.nokia.com/info/sw.nokia.com/id/7717bed1-27fa-4ccb-80e3-48e94b3c3aa0/Camera_MIDlet_A_Mobile_Media_API_Example_v1_0_en.pdf.html
it works...
Hallo,
i have a question regarding the compatibility of J2ME programs:
If a program is developed specifically just using MIDP1.0 libraries, is it possible to run it at any phone providing a J2ME...
then you could just do a
try:
...
except:
...
this would not construct a appuifw.Text
Hi,
I've got an interesting problem with the socket and the select module:
if i want to open a tcp server socket, i do the following:
>>> from socket import *
>>> s = socket(AF_INET,...
Okay, here is exactly what I do:
phone:
>>> from socket import *
>>> HOST = '10.0.0.101'
>>> PORT = 50007
>>> gethostbyname('www.google.com')
'66.249.93.99'
>>> s = socket(AF_INET,...
yes, i mean gethostbyname(gethostname())-but results are really the same with localhost.
all i did within python was:
>>> from socket import *
>>> gethostbyname('localhost')
these are the...
Hi,
but how does it come, that
>>> gethostbyname(gethostname))
shows my real IP address, the phone got from ppp? (10.0.0.101)
Whenever I open a listening socket (tcp and udp) on the phone (6670, 1.1.6), all incoming connections are shown to be from 0.8.0.0, regardless of the real IP, where the connection/datagram is coming...
it was some gnubox settings:
when i deleted the records within gnubox install menu, everything worked again like it should.
Hallo,
does anybody know a solution to this problem?
When I start a python program, that needs internet connectivity (eg weather_maps from the examples), it just says "Could not fetch the...
First I had the same problem as stated above, then I changed to the real local IP address (given via gnubox/BT).
But after
"s.bind(('10.0.0.100', 50007))"
i get
"socket.error: (13, 'Permission...