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?
...
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...
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.
...
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(S60 platform) Nokia Phone Network Connections? I need to see the network traffic of my Nokia Phone...
...
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...
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.
...
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..!?!?
...
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...
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?
...
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...
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...
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...
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]:...
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).
...
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.
...
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 ...
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.
...
Is it possible to play a recorded audio file to the callee using the Telephony API in Symbian? If so how?
Thanks.
...
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...