s60

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...

Video Streaming Server on Mobile

I have seen video streaming to mobile phones. I would like to know whether we have a streaming server that can be installed on mobile phone and stream video to another device from the camera present on the phone. I would like to have on for my Nokia N70 phone. ...

How do i create an S60 app that writes to idle/Active screen?

Hi, I would like to write a replacement for the S60 Active Screen (app that runs in the idle screen). But I can't find any documentation covering how to write/draw to the idle/active screen API's for S60 3rd edition. I dont mind if they are for C++ or Python bindings. Can anyone point me to some docs/examples? PS I know this can be d...

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. ...

is there a way to pickup the lat/lon from Google Map Mobile 3.0(MyLocation Feature) with a python script?

Hi, I want to fetch my current lat/lon from google maps mobile 3.0 with the help of some script which i guess could be a python one. Is this possible? and more importantly is the google maps mobile api designed of such interaction?any legal issues?? Basically i have a s60 phone that doesnt have GPS,and i have found that google maintain...

Bluetooth obex reception on 3rd edition device fails

I have got a mix of 2nd edition and 3rd edition s60 phones. I start custom obex listener on both phones using Python and try to send files to them. Though I can send files to 2nd edition phone; I can't send files to 3rd edition phone and the error being "Broken pipe". Why this is so? ...

How to do PyS60 development on OS X

Is it possible to do PyS60 development on Mac OS X? There is an XCode-plugin for Symbian C++ -development, but I don't know whether I can create Python-apps for my Nokia phone with that. I'm talking about a more thorough SDK experience than just editing files with Textmate/Emacs and copying them over to the device. ...

Is it possible to access some sort of system error log on S60 devices?

Hi, this my first shot at this awesome new (to me) programmers site, I hope someone is capable of enlightening me some :) Does anyone know if it is is possible to access some sort of error log on s60 devices? The only thing i can find that is somewhat related is a log of recent send/received packets and calls... The emulator is not a op...

Nokia s60 emulator for linux

I am using EclipseMe on Ubuntu. I want an emulator that can emulate mouse movements on screen. Is there an s60 emulator for linux? Edit: Does net beans has an in built emulator that can emulate mouse movement on device screen? ...

Nokia N95 and PyS60 with the sensor and xprofile modules

I've made a python script which should modify the profile of the phone based on the phone position. Runned under ScriptShell it works great. The problem is that it hangs, both with the "sis" script runned upon "boot up", as well as without it. So my question is what is wrong with the code, and also whether I need to pass special parame...

Saving a file with Javascript in S60v3 mobile browser

I'm busy experimenting with TiddlyWiki and trying to get it to run on my Nokia E51, which uses S60v3. The browser is based on webkit, which should mean that I'd be able to get it to work, but no luck so far. Does anyone have any experience with saving files locally on this platform? ...

Getting Aptana setup with Nokia WRT plugin

I've just installed Aptana and gone through the process of creating the default RSS Reader following the wizard. I changed the name and the url but nothing else. It works fine in the preview in Aptana. Two problems: i). When I try to setup the device to deploy to, pressing the Search button in Window->preferences->Web Runtime->Deploym...

Symbian Series 40/60

I am new about Symbian Series 40/60. so can anyone help me out the following queries. Which SDK are used to develop application in Symbian Series 40/60 ? Can we use Web Service from our application or call web service from Symbian Series 40/60 application? and last thing can we integrete thirt party application with this applications? t...

Is there a HOSTS file on Symbian Series 60 5th Edition devices?

Hi, There used to be a HOSTS file on S60 3rd edition devices (see here). It was a great feature for QA. Anyone knows if there's such a file on S60 5th edition devices? Is there another way to tell the phone to go to a specific IP, given a host name? Many thanks, Ori ...

Developing custom list control in 5th edition

If a custom list control is to be developed for S60 5th edition phones, what is the best approach to do that? The control should enable rich presentation of data in custom layouts. It should be possible to include images, texts, buttons in every item. Each list item should be able to expand/collapse to provide more details about the ite...

Symbian OS S60 Platform

From here I read S60 is currently amongst the leading smartphone platforms in the world. However I can't understand: What the S60 does, what is the need for a platform when there already exists an underlying Symbian OS? If I write applications in Symbian C++ or Java ME is it for the Symbian OS or the S60 platform? Can I directly wr...

Start playing streaming audio on symbian

The tiny question is: How to start (realplayer ?) playing given online resourse (e.g. http://example.com/file.mp3) PyS60, C++ or C# via RedFiveLabs would do. EDIT1: Title changed from "Start RealPlayer on symbian" to the more appropriate. ...

Issues with build in Carbide C++ 2.0

I'm building my application and when I try to run it on the emulator, I get this error. Creation Time Description Resource Path Location Type 1254339868582 BLDMAKE ERROR: Directory "\S60\devices\Nokia_N97_SDK_v1.0\epoc32\" does not exist ZeFirst Unknown C/C++ Problem The folder does exist and does have the necessary rights. The ...

Video in Qt S60 application?

Has anyone built a Qt S60 app (3rd edition, FP2) that plays (streaming or local) video? I want to play video 'in' a widget, not with (say) QDesktopServices. I know there's documentation about how to do this with Symbian, such as here and here but I'm still stuck. (Apologies in advance for cross-posting: I've asked elsewhere, but with ...

How to change a QPushButton icon when it has focus?

I'm using a QPushButton in an S60 Qt app. I want the button icon to change when it has focus. I've tried this... navButton->setStyleSheet("background-image: url(c:/Data/navArrowsNotSelected.png);"); setStyleSheet("DoubleViewWidget QPushButton:focus {background-image: url(c:/Data/navArrowsSelected.png); border: 2px solid yellow}"); ....