Things I found are missing in nokia 5800 Express M...

Tsup guys, I`m having this new release of nokia s60 5th edition (Nokia 5800 Express Music) but since I bought it last month I`ve started discover some features are not working as I always used to see them to my previous handset (Nokia n73-1). At my previous nokia n73 when I`m on playing music that I`ve store in my handset and then the I receive the sms message its only makes a light beep sound even if I`m on profile that setted another alter tune for sms but in this nokia 5800 when sms comes in the middle of track playback its pause for a time from plyaing the song then start ring the current profile`s sms alter tune then keep on playing the track. On the side of adding sms recipients, if your forwading an sms to more than one person then you`ve started adding recipients by either searching or scrolling you might face some of the contacts doesn`t appear in your list after adding some others even if you do it by search contacts for typing the first alphabets of the recipients you are searching. So in order to get them you`ve to select OK then select the ADD RECIPIENTS again then you will find the contacts that were not seen before. Lastly, on the message writing. When I use the HANDWRITING style, I can write my things well but still up to know I`ve not yet find the area where I can erase the words that I`ve wrotes. Instead I`m supposed to change the keyboard type so as I can get the erease key. Can anybody help me to locate where can I find the erease key when I`m in mode of HANDWRITING style that uses a given special touch-screen pencil. I`m using it which means I`II keep discover many more things that seems these nokia have lack in this model & if there is anybody else found something please don`t hesitate to contribute here too. [B]Thankxx[/B]
"Nokia connecting people"
Nokia 5800 Express Music 8GB, Red
FirmWare: 21.0.025
RM-356

Hey bud, in order to erase you have to scratch from right to left same as space but opposite direction

Similar Messages

  • Some wifi hotspots are invisible for nokia 5800

    my problem is that some wifi hotspot are not visible for my nokia 5800.
    I know the wifi hotspot is there because I can connect to it with mij laptop.
    Also, a friend of mijn can connect to the wifi hotspot with an HTC telefon.
    I can easily connect to my home wifi and other hotspots without any problems,
    but some hotspots just won't connect.
    For one particular hotspot, I know it doesn't use mac-filtering and doesn't
    require fixed ip adresses. And I was able to connect to it in the past, but
    it is invisible now.
    what could be the problem and how can it be solved?

    checked the filtering list, no networks are filtered.
    the problem must be something else.
    as I said, laptop sees hotspot, my friends HTC sees the hotspot, Nokia 5800
    sees the hotspot sometimes, can connect sometimes, but when connected
    gets error message (gateway can not be found - something like that).
    Message Edited by Lucas320 on 07-Oct-2009 06:02 PM

  • Complete manual for Nokia 5800 Express

    Hi,
    Is there a complete manual for the 5800. 
    I don't mean the one supplied in the delivery box.
    I like to get a more detailed manual
    Is there one?
    And if so any link...
    /Pelle

    All of the manuals that are available for the 5800xm are on the link below:
    http://europe.nokia.com/get-support-and-software/product-support/nokia-5800-xpressmusic/guides
    Message Edited by psychomania on 11-Mar-2009 03:55 PM

  • Nokia 5800 Express and Adobe Mobile Packager

    Hi.
    I wanted to use the mobile packager to get an app onto a Nokia 5800.
    But I couldn't find the Nokia 5800 on the list of devices supported by the Abode Mobile Packager.
    I created the app in Flash CS4...if I don't use the Mobile Packager how can I get the app onto the Nokia device?
    Thanks.

    Hi,
    You can find a list of supported devices and countries here:
    http://labs.adobe.com/wiki/index.php/Distributable_Player:Supported_Devices#S60_Devices
    As of today we do not support the Nokia 5800 within the mobile packager, to package for this device you can use the Forum Nokia packager or SWFPack.com
    Regards,
    Mark
    www.flashmobileblog.com

  • Contenu du pack Nokia 5800 express

    Je viens d'acheter un gsm Nokia 5800xpress chez Phonehouse en Belgique. Je constate qu'il n'y a pas de stylet de rechange ni de housse pour mon gsm dans la boîte alors que sur tous les tests sur internet, il y est fait mention.Est-ce normal?
    D'avance, merci.

    Firstly, this is an English language forum.
    According to the details given on Nokia Belgium's site at http://www.nokia.be/decouvrez-les-appareils/tous-les-appareils/nokia-5800-xpressmusic/specifications there is no mention of a spare stylus or of a hard case.
    The accessories packaged with phones do vary from one market to anotther.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Nokia 5800 express music monitor "screen" problem

    hi all,
    i've a nokia 5800 device and i've faced a very serious problem:
    when i lock the phone and unlock it the monitor or screen dont appear as previous normally, instead of that shaked colored lines appear, so i can't see who is calling. But the touch is working normally so i can play music or answer calls but without knowing who is calling.
    if i switch the phone off then switch it on i see the the screen normally, and when it locked then unlocked the same problem appears again.
    i've tried to solve the problem by formatting the device but it is no use
    the same problem faced my frien
    i don't know what to do, please give me a hand......
    Solved!
    Go to Solution.

    I've been having a very similar problem with my nokia 5800 expressmusic.
    it started off like yours but then the screen went fully black.
    the green, white and red buttons at the bottom work so does the small touch button at the top right.. those lights always come on when i unlock the phone so they're fine.
    I know that my phone is still working because i was randomly touching the screen when the phone was unlocked (even though i cannot see anything on it) and i ended up calling somebody. my only problem is that i cannot see the screen at all!!
    i've tired turning my phone off, taking out sim and memory cards, putting different sims in and charging it.
    nothing works!!
    is there anything i can do?
    can anybody help me with this?
    or is my phone just past its 'use by' date?
    please, please help me!
    thanks

  • One thing java generics are missing

    specialization!
    I'll give you a templated example with a function here:
    template <typename T>
    inline std::string to_string(const T& t)
    std::istringstream ss;
    ss << t;
    return ss.str();
    that's one of those standard conversion snippets that everyone uses... as long as T supports the "<<" operator, it will convert just fine...
    Now, if you're using this function in other template based code, the problem comes up:
    template <typename T>
    void foo(const T& t)
    std::string s = to_string(t);
    ... do something with s now...
    it makes sense, if you want to do operations with a string... but what if the type T *was* a string... the to_string function just did a whole mess of needless operations (stringstream conversion)...
    here comes template specialization to the rescue:
    template <> inline std::string to_string<std::string>(const std::string& t)
    return t;
    there we go... no extra steps... because it's inlined to begin with, the compiler will remove it... (this is what's called a conversion shim).  Now when the to_string function is called with an std::string argument, it does nothing.

    Hmmm, it seems I didn't explain it too well:
    the 3rd snippit is the same as the first, however the "typename T" has been removed and all instances of "T" have been replaced with a specific type: this is template specialization... it allows for you to have different code for each type... it's a complicated form of function overloading....
    what I'm saying is that, in a java generic collection, you may have all this code that works for all types, but could be optimized for one of those types... I used string above...
    for instance... let's say there's a member function to count the number of characters used if the type were converted to a string... the easiest thing to do would be to convert it to a string an get the length.... however, in the case of numbers, there's a much, much more efficient way to do it (can't recall the algorithm... but you can get the number of digits with division and maybe a log10 or something...)... this is a mundane case, but even if you did want to use that math for the int version of that generic, you couldn't...

  • Nokia 5800 Express needs some of these improvement...

    hi i would like to suggest some of the more improvement nokia can make on the 5800 xpress...all my previous mobile phones has been nokia (nokia 3310 being the first phone) and i have recently purchased 5800 xpress..some of the features available in the older phones is not in 5800 and i would have expected them to be included in the 5800 but well here are some of the improvement that can be made..
    1. Calender can be upgraded so when you save birthday dates for your contacts it can also be seen in the   calender with reminders
    2. Having atleast four more shortcuts display on the home screen
    3. Have a windows live messenger application for 5800 also
    4. Have a application for displaying clock and notification when the phone is in keylock mode so you don't have to unlock to have look at the them.
    6. Messaging can be upgraded so multiple messages can be deleted at once
    7. Have a stopwatch application
    I hope nokia take them into consideration from this discussions..thanx

    true i have also encounted another annoying thing about messaging is that there is no resend options like the older nokia phone where u can resend the same message to the same contact but the current one you have to go through forward option..i hope nokia tries to upgrade this..

  • Nokia 5800 express music languages

    I bough 5800 yesterday and i noticed that there is only 3 languages available English,Arabic and something else... Now i need english,german and russian...Is it possible to download language pack somewhere? Or if i change the product code (using software) will it void my warranty? Please its very important for me...Waiting for answer
    nokia 8210->3310->3330->8890->6800->3220->6680->n72->E-90->5310XM->5610Xm->n82->n95 8gb->5800XM 8gb->2630
    Solved!
    Go to Solution.

    Yes, changing the code will invalidate your warranty - and for that reason they don't let us talk about it here.
    Phones are shipped with a set of languages relevant to the countries where they are intended for sale, Nokia does not provide a way for the end user to change this, but a Nokia service point may be able to add language packs to the phone at a cost.

  • Update nokia 5800 Express music problem

    Hi all!
    I wanted to Update my nokia using NSU and all i get is this: "No software updates available for your phone
    Please note that your mobile service provider, operator or carrier may not have approved the latest Nokia device firmware available."
    And my firmware wersion is: 11.0.008
    Does that mean that i cant update my software?
    Thanks.

    It means that you can't update your phone with NSU at the moment.
    What country are you from and is the phone originally intended for that country/region?
    Is your phone operator branded/customized? If so, who is the operator?
    Often with operator branded phones, it takes longer for updates to become available because the operator has to approve it.
    And, unfortunately, sometimes the operators do not authorize/approve any updates (it costs them money to do so, I presume).

  • Question regarding nokia 5800 express music

    Currently I have Nokia e61, with this phone I can connect my plantronic bluetooth stereo headset. I know my phone doesnt support ad2p but as i listen to audiobooks it doesnt matter. While listening i can write mails, use internet, chat on msn and so on without closing any program, they all run in the background. This phone never stutter or becomes slow.
    How does all that work with this phone? I know that a common problem is when you use a bluetooth connection and the phone becomes very slow. I am thinking of buying this one because of the nice musicplayer, internet browser and of course the large memory capability.
    Thanks in advance
    Björn

    jimmy, why are you making up random answers to people's questions yet again? Is misleading people a hobby of yours or are you just plain useless?
    It is not possible to copy and paste text from anywhere within the browser.  It's a well known and annoying limitation of the S60 browser.  Text can be pasted into it from other applications but you cannot copy a paragraph of text from a web page.
    @ waspworld: Hopefully a more knowledgable user that doesn't guess their answers can help you with your bluetooth query.  I don't use a headset like that myself but I can't remember seeing any major issues posted about it.

  • Chinese Language for Nokia 5800 Express Music

    I have recently updated my nokia software version from V21.0.025 to V31.0.101 using the nokia software updater. However i notice that my Chinese, Malay & Indonesia languages have all dissapeared.
    Can anybody help me please.

    Looks like you bought a phone that was meant for another region and the language pack containing Chinese was installed afterwards by the retailer. The retailer should have told you this. When you updated the firmware, the phone reverted back to its original language set. Worst of all, the warranty may not be valid in your country.
    Anyway, language packs can only be installed by Nokia Care Points and you will lose it again the next time you update your firmware.
    You can find your nearest Nokia Care Point at:
    For UK
    http://www.nokia.co.uk/A4228006
    For Europe:
    http://europe.nokia.com/A4388379
    For Asia-Pacific
    http://www.nokia-asia.com/A4416070
    Elsewhere:
    http://www.nokia.com select your country, go to the support section, then select repair.

  • Nokia 5800 express music software update

    i wanted to check if i can update my program but when i entered the product code this massage apeared:
    Sorry, there is no software currently available for that product code via the Nokia Software Update tool.
    it means that my phone doesn't exist for nokia?

    wareef86 wrote:
    This problem has got me and can be solved by going to the nearest supported by Nokia (Nokia Care), which in turn will download the latest software available for your Device
    Please note that the latest software is 31.0.101
    This will work only if Nokia has released an update for this specific phone and it is an unbranded or unlocked phone. If bought through a cell carrier, Nokia will not touch it and the only solution is to wait until the cell carrier releases the update.
    If I have helped you with your problem in some way, please take a little time and hit the kudos button in my post. Without your feedback, I don't know if I am being helpful or should just be put out to pasture.

  • NOKIA 5800 EXPRESS MUSIC - DivX PLAYER

    Is there a reliable and trusted download that will enable me to play DivX's on my phone?

    Currently no software works very well. It would be best to just convert them to a compatible format.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Nokia 5800 locked after software update

    Hey I was hoping someone would be able to help me. I've got a nokia 5800 express music phone. I updated it but then the phone got locked. It keeps saying code error and the green+red+camera thing isn't working as well... I got the phone from England but now I'm using it in sri lanka...So pls pls help me.....

    Take a look here and see if there's anything that can help you (read the pool of knowledge post too) : /t5/Nseries-Devices-and-S60/Nokia-5800-NEVER-HEARD-BEFORE-PROBLEM/td-p/640228

Maybe you are looking for

  • Lost Shopping Cart

    Everything works well in iTunes except I cannot get to my shopping cart. I can navigate through the store and add songs to the cart, but when I select the cart from the iTunes menu I get an error message "the network connection timed out". What gives

  • HT4889 can you stop in the middle I am transferring 600gb wirelessly and it says 110 hours and it has been working all night? I need my computer for work?

    I am transferring my 2009 27" iMac to a new 27" 768gb flash drvie with 32gb ram via wireless and it is taking 110 hours and has been on overnight. I have the thrunderbolt to firewired adapter but I could not get it to mount my buffalo thunderbolt ext

  • Trusted Certificates do not load in WL 10.3.2

    In Weblogic 10.3.1, when I started WL, it will load the trusted certificates automatically as below <Loading trusted certificates from the jks keystore file C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.> <Loading trusted certificates from t

  • All buttons lock up and do not respond

    I am developing a tabbed-dialog box with multiple tabs. The piece is a single movie clip in a larger application, with different frames containing the graphic backgrounds for each tab. Textfields are placed on the backgrounds dynamically when the swf

  • InDi CS6 not saving prefs

    Hi All of a sudden my InDesign is not saving my prefs I set/change prefs with all documents closed but still when reopen Indesign, all prefs are reset. I did have to reset my prefs about a week ago, but I am not sure if thats when it started... I use