s60

How to display remote email message?

I have been using this code to display IMAP4 messages: void DisplayMessageL( const TMsvId &aId ) { // 1. construct the client MTM TMsvEntry indexEntry; TMsvId serviceId; User::LeaveIfError( iMsvSession->GetEntry(aId, serviceId, indexEntry)); CBaseMtm* mtm = iClientReg->NewMtmL(indexEntry....

Not receiving clear list notifications from Call log

I have been using CLogViewRecent and MLogViewChangeObserver to monitor call log on S60 5th edition phones. MLogViewChangeObserver has three functions: virtual void HandleLogViewChangeEventAddedL(TLogId aId, TInt aViewIndex, TInt aChangeIndex, TInt aTotalChangeCount); virtual void HandleLogViewChangeEventChangedL(TLogId aId, TInt aVie...

Screenshot for nokia theme

Hi! How can i create several screenshots (desktop, menu) from nokia theme for s60 platform in sis formt using lamp? ...

S60 Bar Code reading in my own application

Hello, How can i go about using bar code reading capabilities with my S60 application? Is there any free libs that i can use? or even comercial ones? Thanks. ...

glib on Symbian S60

Hello, I am interested in porting a C library that depends on glib to Symbian. After some research, I found that there is a Symbian port of glib. However I can't seem to find much documentation about it. Can anyone point me to the right direction as to whether this can be even done or not? If yes, how. ...

How to launch a browser with a given URL within the same tab

Here is some code to launch S60 browser with a given url. // use the StartDocument api param->Des().Format( _L( "4 %S" ),&aUrl ); TUid id( TUid::Uid( browserUid ) ); TApaTaskList taskList( CEikonEnv::Static()->WsSession() ); TApaTask task = taskList.FindApp( id ); if ( task.Exists() ) { HBufC8* param8 = HBufC8::NewL( pa...

Not able to get response back on java code while http get with S60

Hi, I am using Net Beans for developing an application on S60. I made one page for user authentication and using .net wcf service to authenticate user. i am able to send data on .net service by HttpGet method but not able to get response back on java page. I have tested it on fiddler with this url its working fine and returning respons...

Capture global touch events (Symbian)

Basically I wanted what the pys60 module keycapture does (global capture of keystrokes) but I wanted to do this with the touchscreen. So if the program is running, all touch events can be intercepted and logged by the program. How is this possible? ...

Make phone browser open a URL on Symbian S60 3rd Ed programmatically

On clicking a URL displayed in my application running on a Symbian S60 3rd Edition device should make the phone browser ( which is already open ) open the specified URL. Here is the code: _LIT( KUrlPrefix,"4 " ) void CMunduIMAppUi::OpenInBrowser(const TDesC& aUrl) { HBufC *url = NULL; const TInt KWmlBrowserUid =0x10008D39;...

KERN-EXEC 3 when navigating within a text box (Symbian OS Browser Control)

I've had nothing but grief using Symbian's browser control on S60 3rd edition FP1. We currently display pages and many things are working smoothly. However, when inputting text into an HTML text field, the user will get a KERN-EXEC 3 if they move left at the beginning of the text input area (which should "wrap" it to the end) or if they ...

Creating and Installing JAR files in S60 Devices

I hav written a J2ME application for Bluetooth chatting using L2CAP connections in Eclipse Galileo. The problem is the JAD/JAR file created by selecting Project->J2ME->Create Package, doesnt install on my S60 (Nokia 5233)phone. It says Authorisation Failed!!. And after installing the screen gets stuck when it comes to connections part, t...

Where are the thumbnails stored on Nokia phones for captured images?

The following link shows the list of directories where the thumbnails are stored in the respective phones: http://wiki.forum.nokia.com/index.php/Thumbnail_path_for_3rd_edition_devices but the phones given on the link are limited. Does it mean that, for other phones (such as N86, Expressmusic etc), I do not have access to thumbnails? I t...

Symbian/S60 audio playback rate

I would like to control the playback rate of a song while it is playing. Basically I want to make it play a little faster or slower, when I tell it to do so. Also, is it possible to playback two different tracks at the same time. Imagine a recording with the instruments in one track and the vocal in a different track. One of these track...

Undefined Methods - J2ME + Nokia S60 Edition 5

Hi, I am trying to maintain/develop a J2ME application on Eclipse that uses the Nokia N97 S60 SDk, edition 5. When I try to build the project (after importing it into the workspace), I get the following error: The method getRGB(int[], int, int, int, int, int, int) is undefined for the type Image. Resource: SVGImplementation.java The...

run .class file on s60 phone

How do i make .class files, that i created using java, run on an s60 phone ...

Trying to use jQuery on my Nokia gives me this error: TypeError: "Object $ (result of expression $) does not allow calls."

flickr Here's a simplified demo: http://jsbin.com/emugo3 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"&gt;&lt;/script&gt; <script> try { $(function () { $.noop(); $("#hello").text("it works"); }); } catch (e) { alert(e.message); } </script> The user agent for my phone's browser is: Nokia...

How to generate a .torrent file in QT (C++) on S60 platform

I am developing an app using QT wrt that would include functionality monitoring how fast some one types (sms) on their mobile, log this to a file on the device (which file is then bencoded) and sent as a .torrent file. to a remote server * Having looked at symtorrent, a bit of the required functionality is implemented (torrent file creat...

Display simple calendar on screen in python S60 (pyS60)

Hi I am trying to develop a simple calendar based application using pyS60. I need to display a calendar as part of the form. I have searched but I couldn't find anything useful in the e32calendar documentation. I can get a calendar on the canvas but its not interactive. But i want one which is interactive ( just like inbuilt calendar in...

Power Management in Symbian

Are there any "best practices" for writing a power-efficient background application in Symbian? Specifically, is there any way (i.e. API) for a Symbian app to hint the OS regarding its current state in order to reduce battery consumption? In Android, for instance, there is the notion of Wake Locks, which prevents the device from goin...

can i use java library for java se in java me

can i use java library for java se in java me. i use smack java library to create a chat client. can i use the same libary to create a chat client for javame. ...