symbian

symbian v3 python center button caption

I am using python for s60 to make a symbian application. The body is set as appuifw.text. I have bound the center button (select) with a function. It is possible to add a caption over the center button like in other applications? ...

Media file can not be switched and played

I am trying to play a music file on S60 5th edition with the following code: _LIT(KMusicFilename, "C:\\Data\\Music.mp3"); TApaTaskList iTaskList(CCoeEnv::Static()->WsSession()); TBool iExists; TApaTask iApaTask = iTaskList.FindApp(TUid::Uid(0x102072C3)); iExists = iApaTask.Exists(); if(iExists) { // Music player already run...

What is a good way to load an application specific font on Qt on Symbian?

Is it possible to use QFontDatabase::addApplicationFont() in Symbian? It seems to return -1 (error) even if the file exists? If not, is there some alternative to this, apart from system-wide font installation? Thanks. ...

DirectShow analog for Symbian OS?

So Windows Mobile has its DirectShow for media editing capturing and so what is its analog for Symbian OS (s60 v5)? ...

How to Sniff Symbian OS Nokia Phone Network Connections?

How to Sniff Symbian OS(S60 platform) Nokia Phone Network Connections? I need to see the network traffic of my Nokia Phone... ...

Widgets on Samsung Star/ Samsung Corby

Hi, I just created a new widget by following a tutorial. I created a zip containing all files and renamed it to HelloWorld.wgt instead of HelloWorld.zip. I sent it to my samsung star/corby via data cable, but when I try to open the wgt file on my phone it says it can't open it, because it doesn't know the filetype. Is there a way to ins...

need help in sending email with attachment in Symbian

Hi, I am working with an app, in which I have to send e-mail with an attachment of an image. And I have no idea about this thing. working on Carbide.c++ (Symbian) Thanks in advance. ...

applicatoin not working in n73, working fine in N70!

Hello Friends, I have a problem in running the app in N73. I've tried that app in N70 and worked. Here in N73 it gets installed successfully, but when I open it, it just blink and goes off(Closed). even I can't find it in Background. I built that app with the option Phone Release(GCCE) [S60_3rd_FP2_SDK_v1.1]. Any idea..!?!? ...

Not able to get the type of MessageType in email app of symbian 3rd

Hello friends, I want to develpoe an app which sends email from IMAP4 settings of the phone. And I am following this perticular wiki. RSendAs send; User::LeaveIfError(send.Connect()); CleanupClosePushL(send); RSendAsMessage sendMsg; sendMsg.CreateL(send,**KUidMsgTypeSMTP** ); CleanupClosePushL(sendMsg); sendMsg.SetSubjectL(_L("Inc...

How to write a program on Symbian ?

I don't know Java, only C#, and I need to make a simple program for Nokia N95 (Symbian 60). How i can make one? Is there any C# editor? ...

Problem with detecting phone orientation change in Symbian/Qt

I want to do some custom processing when the orientation of the phone changes. I have re-implemented the resizeEvent(QResizeEvent*) virtual function in my class. The strange thing is, for the first one time when the phone orientation is changed, this function is actually called, and works fine. But all subsequent orientation changes, t...

Problem in calling a virtual function across Symbian DLLs.

My IM application setup is like below: User Interface module (exe) Plugin module ( A polymorphic DLL that provides an abstract interface for different protocols to the UI module ) Several Protocol DLLs ( Shared library DLLs that implement the respective protocols, like Jabber, ICQ etc ) Now, I was asked to implement contact list cach...

How can a FlashLite Developer using Device Central emulate camera and file upload integration?

I am developing an application with Flash Lite designed to run on Nokia S60 5th edition phones using the Flash Lite API Bridge Interface. The application uses the API Bridge to access the phones camera and upload functionality to take a photo, display it to the user then upload it to a server. I am using Flash CS4 Professional and Device...

Alternatives to using RFile in Symbian

This question is in continuation to my previous question related to File I/O. I am using RFile to open a file and read/write data to it. Now, my requirement is such that I would have to modify certain fields within the file. I separate each field within a record with a colon and each record with a newline. Sample is below: [email protected]:...

How does Google Maps know my position?

I have a nokia 5500 sport mobile phone, and I found after i installed google map, it can automatically locate to my current position. and I want to know how google map get my position and mark it on the map ? How can I programming implement this feature with symbian C++(nokia 5500 's operate system is Symbian 3rd). ...

regarding receiving sms using symbian c++

hi can we recieve the msges tat are comin to the inbox? i want the msges to be transfered to the bluetooth to another device in the automobiles? please tel me any solution. ...

arm-none-symbianelf-ld throwing "No Such File or Directory" error looking for file [...].GCCE.UREL.objects.via when building project

Im using Carbide C++ 2.3.0 to build a Flash Stub project with S60)5th_Edition_SDK-v1.0 Phone Release (GCCE) set as build configuration. I have installed Perl and JRE and the CSL toolchain (GCCE), and Ive manually updated the Windows PATH variable to point to GCCE/bin. When I create my project according to - this article and click build ...

Reading SIM contacts on Symbian S60

I am looking for a working code snippet for Symbian S60 5th edition in which you can read SIM contact details. If possible, I would skip using RPhoneBookSession, but if that is the only way, please provide code snippet how to use it. Thank you. ...

Sending a recorded message using the Telephony API in Symbian

Is it possible to play a recorded audio file to the callee using the Telephony API in Symbian? If so how? Thanks. ...

What is the best practices in switching between application windows in Qt?

I have an application with the following UI forms deriving from QMainWindow LoginWindow TasksWindow DetailsWindow I'm supposed to login into the application in the LoginWindow where I will move to the TasksWindow. In the TasksWindow, I will choose an item from a combo box, and then I should move to the DetailsWindow and populate data...