nokia

How to create J2ME midlets for Nokia using Eclipse

Hi, Nokia has stopped offering its Developer's Suite, relying on other IDEs, including Eclipse. Meanwhile, Nokia changed its own development tools again and EclipseMe has also changed. This leaves most documentation irrelevant. I want to know what does it take to make a simple Hello-World? (I already found out myself, so this is a Q&...

Problems with sound on a 6265i Nokia using J2ME and Netbeans 6.1

Currently, I have some basic code to play a simple tone whenever a button is pressed in the command item menu. Using: Manager.playTone(note, duration, volume); I also have a blackberry that I'm testing this same midlet on and the sound works fine. So, is this something specific to Nokia phones that aren't allowing me to play the sound...

Can you record audio with a Java Midlet on a Nokia phone (N80/N95) without the JVM leaking memory?

I would like to repeatedly capture snippets of audio on a Nokia mobile phone with a Java Midlet. My current experience is that using the code in Sun's documentation (see: http://java.sun.com/javame/reference/apis/jsr135/javax/microedition/media/control/RecordControl.html) and wrapping this in a "while(true)" loop works, but the applicati...

Developing applications for Nokia 5310

EDIT: Is there any other phone systems that allow connecting into the native messaging system to read input in the composer? ...

How to set specific IMEI in Nokia S60 SDK emulator

I'm also interested in other Symbian SDKs that allow to set their emulator's IMEI. ...

Capture Keystrokes on Symbian OS?

Hey, How would one go about capturing users keystrokes in the SMS composer on the Symbian OS, specifically for a Nokia N73 (or any of the symbian supported devices http://en.wikipedia.org/wiki/Symbian_OS#Devices_that_have_used_the_Symbian_OS)? I'm new to symbian development and I'm trying to write an application to analyse writing style...

Increase heap size in j2me

Is there any way to increase the heap size for j2me on a device? I'm developing an application for a Nokia N95, but am bumping into memory issues when I try to do image processing of larger images. The phone has plenty of heap space available, but seems to restrict the amount allowed to be used by j2me to 1MB. ...

Run Python script from Flash Lite

How can I run a Python script from a Flash Lite SWF? One such method is using SWF2GO to package the SWF + Py script together, after which you can launch the Python script by flash commands. Intelli-Launch Technology v2: Python for S60 background script launcher Another hopeful is Flash Lite's fscommand("Launch","myapp.app") fu...

Developing apps for the nokia n73 in Java?

Hello, I'm trying to find out if it's possible to develop a key capturing application to analyse writing styles when using the SMS composer for the n73 using S60 2nd Edition, Feature Pack 3 SDK in Java? Originally, I thought that all Java applications would be sand-boxed making it difficult to call the native key capture functions avail...

WAP Push atop FLASH SMS

Hi, I want to send a WAP Push SI, but I want the message to look like an alert - like FLASH SMS. I've tried to make the SMS carrying the WAP data a FLASH SMS, but the it seems the phone can't handle it. I tried it on a Nokia 6230i. Is there something wrong with what I'm doing, or phones in general won't handle WAP over FLASH SMS as I e...

How to get the size (free,total) of phone drive using Nokia API?

I want to get the size of the phone drive. I'm using "Nokia-PC-Connectivity"., and with respect to File System API I found on CONADifinition function called CONA_Folder_Info but this function doens't support FreeSize and Total Size but there is CONA_Folder.Info2 and its instance support these variables. But when I used CONA_Folder.Info2...

What interfaces are programmable in the Nokia N73?

I have a Nokia N73 and I'd like to program it to interface with external hardware using any available interface. (POP Port?) Using any of the available platforms: Open C++ Symbian C++ Java Flash Lite Python ...

Can a higher edition S60 Platform SDK build for lower?

After installing the S60 3rd Edition FP1 Platform SDK, with the Carbide C++ IDE, you can build programs for phones that support: 3rdE-FP1 but can you also target phones that support the following? 3rdE 2ndE-FP3 2ndE-FP2 2ndE-FP1 2ndE 1stE ...

Control cellphone camera via Bluetooth

I'd like to be able to control the Photo and Video camera functions of a Nokia N73 cellphone remotely using Bluetooth, in C#. I've seen the 32feet.NET Bluetooth Library but really I've no idea what to do with it. Any existing Bluetooth profile that is specifically designed to control camera-functions? ...

How to get started with Symbian (S60 plattorm)

So at my new job one of the platforms we use is S60 (Nokia phones, Symbian OS) and I am getting curious about it, as well feeling the need to help the team a bit from time to time (I actually work on the server side of things for this software). So any good pointers/recommendations/tutorials and shared experiece that might put me in the...

Nokia Widget: How can I pass a startup parameter ?

We are developing a new UI for one of the products and we are exploring using the Nokia Widgets, It seems to do almost everything we need, but we need to pass an initial token to the widget on startup. So far I have not found any way to do so (looking on the Nokia forums, SO and Google... :( ) so I am wondering if it is possible at all....

About the optional argument in Canvas in PyS60

In Python for Symbian60 blit() is defined as: blit(image [,target=(0,0), source=((0,0),image.size), mask=None, scale=0 ]) In the optional parameter source what is the significance of image.size? ...

Deploy midlet on Nokia mobile

I have written a midlet which asks username and password and connect to servlet running on tomcat to validate. When I run the midlet on the emulator provided by sun toolkit, first time it asks "This midlet wants to connect to http://... using airtime" and asks user permission. I want to know is there anyway to get rid of this? Once this ...

Does PyS60 has a reliable garbage collection?

I have heard it many times that garbage collection in PyS60 is not up to to the mark. This imposes a lot of limits on writing cleaner code. Can I at least rely that the non cyclic references are cleaned up after a function exists. ...

Does the stack limit of Symbian also apply to PyS60?

Symbian has a stack limit of 8kB. Does this also apply to the function calling in PyS60 apps? ...