How to add voice navigation in nokia 6110 navigato...

Hello i have a nokia 6110n and the voice navigation is only in english and i want to add in portuguese is it possible?
How please?
Tanks

I'm running Ovi 3.01 on a different phone (5800) so this may or may not help you. But on my phone, I can go to
Options -> Tools -> Settings -> Navigation -> Voice guidance
and make my selection, and the phone will download whatever is needed automatically, assuming you are already connected to the internet.
-Yongtao
Message Edited by yongtao_you on 15-Dec-2009 05:07 PM

Similar Messages

  • How to add a navigation Panel and Zoom Slider Bar using Java API

    Hello,
    I am using Mapviewer Java bean as I have to use Oracle Mapviewer in Java Stanalone application.Please can anyone tell me how to add a Navigation panel and Zoom Slider in Java API. I found the API s for same in Java Script but not in Java.Kindly help.
    I am using Oracle Mapviewer 11g.

    This is forum sponsored by Adobe make of Acrobat and Reader. Since Chrome and FireFox web browser have chosen to use their own viewer you might get more help in their forums or customer support.

  • How To Add arabic languge 4 Nokia 6234

    How To Add arabic languge 4 Nokia 6234 ???
    i have nokia 6234 I wont to add arabic languge to my phone languges ? how can i do this .

    Hi,
    Nokia sw updater checks the product code of your phone for your phone language. If it is not defined for arabic language, you can not have it.

  • How to add global navigation to ui:insert and ui:include components?

    Hi,
    I'm new to JSF and trying to add global navigation rules to some imported UI: Components, while I've managed to add Global rules for the pages such as say index.xhtml and and contact.xhtml (which) is in a folder called content by i.e., adding the following in faces-config.xml
    <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>contact</from-outcome>
                    <to-view-id>/content/contact.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config> which works fine and the page will off course be found from anywhere in the project how, I've also got a folder called components, which include the header and footer etc. to include in every file, and then want to be able to also create global navigation rules for each component and had also tried adding e.g., this to the faces-config.xml file......
    <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>header</from-outcome>
                    <to-view-id>/components/header.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>And then I would of had hoped and assumed that I would be possible to use the following anywhere to access the components from the components folder
    <ui:insert name="header" />
    or
    <ui:insert name="header"></ui:insert>
    however I can only still access the component with i.e.,
    <ui:insert name="header">
                <ui:include src="components/header.xhtml"/>
    </ui:insert> And this would be no good in the subfolders only from the outer index.xhtml could this be obtained, the project structure is as follows - hope someone can help please?
        Web Pages
               |
               |_____WEB-INF
               |
               |_____components-------header.xhtml etc.
               |
               |_____content-------contact.xhtml etc.
               |                              |------------images
               |_____resources----------------|------------js
               |                              |------------style ------style.css etc.
               |_____index.xhtml
         here's web.xml & faces-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
        <display-name>RenewableOptions.Org</display-name>
        <description>Simple Registration Application</description>
        <context-param>
            <description>
            </description>
            <param-name>javax.faces.PROJECT_STAGE</param-name>
            <param-value>Development</param-value>
        </context-param>
        <!-- Faces Servelet -->
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/main/*</url-pattern>
        </servlet-mapping>
        <welcome-file-list>
            <welcome-file>main/index.xhtml</welcome-file>
        </welcome-file-list>
    </web-app>
    <faces-config version="2.0"
                  xmlns="http://java.sun.com/xml/ns/javaee"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd">
        <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>index</from-outcome>
                    <to-view-id>/index.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>
        <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>footer</from-outcome>
                    <to-view-id>/components/footer.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>
        <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>header</from-outcome>
                    <to-view-id>/components/header.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>
        <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>leftCol</from-outcome>
                    <to-view-id>/components/leftCol.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>
        <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>navigation</from-outcome>
                    <to-view-id>/components/navigation.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>
        <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>rightCol</from-outcome>
                    <to-view-id>/components/rightCol.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>
        <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>blog</from-outcome>
                    <to-view-id>/content/blog.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>
        <faces-config>
            <navigation-rule>
                <from-view-id>*</from-view-id>
                <navigation-case>
                    <from-outcome>contact</from-outcome>
                    <to-view-id>/content/contact.xhtml</to-view-id>
                </navigation-case>
            </navigation-rule>
        </faces-config>
    </faces-config>

    Found solution -
    just need to add ../componets/header.xhtml
    etc. when using the rule in the subfolders....

  • How to add document navigator control into a plug-in window?

    I develop a filter plug-in for Photohsop CS2, but I wonder how to add navigator controll in the plug-in window. The navigator works int the same way like Photoshop navigator - moving cursor on the navigator makes the image scroll in the main previes. I want to have both, the navigator and a main preview window in the filter plug-in window. I saw it many times, however, I did not find example in Photoshop CS2 filter SDK.
    If somebody could point me to a resource, that could get me to the right track, i would be glad.
    Thanks
    Rene.

    Chris hello,
    It is good to know that plugins can not control the docunment view in Photoshop. However, my idea was to have preview in Photoshop plug-in window, and then to have small navigator that would scroll the preview. Exactly like on this Photoshop plug-in:
    http://data.unipixels.com/screenshot.jpg
    Please notice tha navigator on the right side of the window. Moving the red rectangle in it will scroll the middle preview window.
    With regards,
    Rene.

  • How to add voice effects to a video

    how can i add voice effects to a video!

    You need to supply much more information.
    For example: Which video app are you using?
    In which format is the video?
    I presume you want to add the effects post production, so to speak, not live.

  • How to add a Navigational attribute to an infoset

    Hi All,
    I have an infoset for which i am trying to add a navigational attribute. For a multiprovider i could able to see the provision to add a navigational attribute whereas coming to an infoset i couldn't find any option to do so.
    i tried using RSISET tcode to adjust the infoset but couldnt see them yet. Could someone please suggest me the possible solution for this issue.
    Regards
    Jitendra

    Hi,
    after turning on the Nav-attributes in ODS and adjust via RSISET, you will see the attributes when doubleclicking the infoset.
    In Infoset maintenance find your ODS and scroll down the Object list.Can you find it in your Infoset ODS Characteristic list ?
    It should appear as an unchecked checkbox.
    tick it and reactivate the Infoset.
    if this is still not working then go through this notes below
    1082082
    1164196
    1158243.
    But if you want to use attributes for navigation in an DSO, you could add the infoobject itself to the infoset and link it to your DSO.
    Santosh

  • Plug-ins for Active Standby on Nokia 6110 Navigato...

    Is there any way to get other active standby screen plugins on the Nokia 6110 Navigator? I have callender but I'd also like Bluetooth, messages etc. I have a Voda UK branded one.

    Good paulrouy - what a team - can you play sweeper
    Today Me Tomorrow You

  • How to add left navigation to Custom Master page for Office 365

    Hi,
    I have created a master page using html, it looks good,
    But I could not see the left navigation, which I would like to have.
    below is my html page which converted to a master page:
    <?xml version="1.0" encoding="utf-8"?><!--SPG:
    This HTML file has been associated with a SharePoint Master Page (.master file) carrying the same name.  While the files remain associated, you will not be allowed to edit the .master file, and any rename, move, or deletion operations will be reciprocated.
    -->
    <!DOCTYPE html[]>
    <html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882">
        <head>
            <meta http-equiv="X-UA-Compatible" content="IE=10" >
            <!--CS: Start Page Head Contents Snippet-->
            <!--SPM:<%@Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=16.0.0.0, Culture=neutral,
    PublicKeyToken=71e9bce111e9429c"%>-->
            <!--SPM:<%@Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=16.0.0.0, Culture=neutral,
    PublicKeyToken=71e9bce111e9429c"%>-->
            <!--SID:00 -->
            <meta name="GENERATOR" content="Microsoft SharePoint" >
            <meta http-equiv="Content-type" content="text/html; charset=utf-8" >
            <meta http-equiv="Expires" content="0" >
            <!--MS:<SharePoint:RobotsMetaTag runat="server">-->
            <!--ME:</SharePoint:RobotsMetaTag>-->
            <!--MS:<SharePoint:PageTitle runat="server">-->
                <!--MS:<asp:ContentPlaceHolder id="PlaceHolderPageTitle" runat="server">-->
                    <!--MS:<SharePoint:ProjectProperty Property="Title" runat="server">-->
                    <!--ME:</SharePoint:ProjectProperty>-->
                <!--ME:</asp:ContentPlaceHolder>-->
            <!--ME:</SharePoint:PageTitle>-->
            <!--MS:<SharePoint:StartScript runat="server">-->
            <!--ME:</SharePoint:StartScript>-->
            <!--MS:<SharePoint:CssLink runat="server" Version="15">-->
            <!--ME:</SharePoint:CssLink>-->
            <!--MS:<SharePoint:CacheManifestLink runat="server">-->
            <!--ME:</SharePoint:CacheManifestLink>-->
            <!--MS:<SharePoint:PageRenderMode runat="server" RenderModeType="Standard">-->
            <!--ME:</SharePoint:PageRenderMode>-->
            <!--MS:<SharePoint:ScriptLink language="javascript" name="core.js" OnDemand="true" runat="server" Localizable="false">-->
            <!--ME:</SharePoint:ScriptLink>-->
            <!--MS:<SharePoint:ScriptLink language="javascript" name="menu.js" OnDemand="true" runat="server" Localizable="false">-->
            <!--ME:</SharePoint:ScriptLink>-->
            <!--MS:<SharePoint:ScriptLink language="javascript" name="callout.js" OnDemand="true" runat="server" Localizable="false">-->
            <!--ME:</SharePoint:ScriptLink>-->
            <!--MS:<SharePoint:ScriptLink language="javascript" name="sharing.js" OnDemand="true" runat="server" Localizable="false">-->
            <!--ME:</SharePoint:ScriptLink>-->
            <!--MS:<SharePoint:ScriptLink language="javascript" name="suitelinks.js" OnDemand="true" runat="server" Localizable="false">-->
            <!--ME:</SharePoint:ScriptLink>-->
            <!--MS:<SharePoint:CustomJSUrl runat="server">-->
            <!--ME:</SharePoint:CustomJSUrl>-->
            <!--MS:<SharePoint:SoapDiscoveryLink runat="server">-->
            <!--ME:</SharePoint:SoapDiscoveryLink>-->
            <!--MS:<SharePoint:AjaxDelta id="DeltaPlaceHolderAdditionalPageHead" Container="false" runat="server">-->
                <!--MS:<asp:ContentPlaceHolder id="PlaceHolderAdditionalPageHead" runat="server">-->
                <!--ME:</asp:ContentPlaceHolder>-->
                <!--MS:<SharePoint:DelegateControl runat="server" ControlId="AdditionalPageHead" AllowMultipleControls="true">-->
                <!--ME:</SharePoint:DelegateControl>-->
                <!--MS:<asp:ContentPlaceHolder id="PlaceHolderBodyAreaClass" runat="server">-->
                <!--ME:</asp:ContentPlaceHolder>-->
            <!--ME:</SharePoint:AjaxDelta>-->
            <!--MS:<SharePoint:CssRegistration Name="Themable/corev15.css" runat="server">-->
            <!--ME:</SharePoint:CssRegistration>-->
            <!--MS:<SharePoint:AjaxDelta id="DeltaSPWebPartManager" runat="server">-->
                <!--MS:<WebPartPages:SPWebPartManager runat="server">-->
                <!--ME:</WebPartPages:SPWebPartManager>-->
            <!--ME:</SharePoint:AjaxDelta>-->
            <!--CE: End Page Head Contents Snippet-->
            <meta name="viewport" content="width=device-width" >
            <!--DC:The Buzz - Team Site-->
            <!--[if gte mso 9]><xml>
    <mso:CustomDocumentProperties>
    <mso:HtmlDesignFromMaster msdt:dt="string"></mso:HtmlDesignFromMaster>
    <mso:HtmlDesignStatusAndPreview msdt:dt="string">https://rbcom.sharepoint.com/sites/cccdev1/_catalogs/masterpage/Master Page Gallery/team-site-test.html, Conversion successful.</mso:HtmlDesignStatusAndPreview>
    <mso:ContentTypeId msdt:dt="string">0x0101000F1C8B9E0EB4BE489F09807B2C53288F0054AD6EF48B9F7B45A142F8173F171BD10003D357F861E29844953D5CAA1D4D8A3A006E1FBF9840A05D48B1698A21E9B5B94F</mso:ContentTypeId>
    <mso:HtmlDesignAssociated msdt:dt="string">1</mso:HtmlDesignAssociated>
    <mso:HtmlDesignConversionSucceeded msdt:dt="string">True</mso:HtmlDesignConversionSucceeded>
    </mso:CustomDocumentProperties>
    </xml><![endif]-->
        </head>
        <body id="test-100">
            <!--CS: Start Ribbon Snippet-->
            <!--SPM:<%@Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=16.0.0.0, Culture=neutral,
    PublicKeyToken=71e9bce111e9429c"%>-->
            <!--SPM:<%@Register Tagprefix="wssucw" TagName="Welcome" Src="~/_controltemplates/15/Welcome.ascx"%>-->
            <!--MS:<SharePoint:SPSecurityTrimmedControl runat="server" HideFromSearchCrawler="true" EmitDiv="true">-->
                <div id="TurnOnAccessibility" style="display:none" class="s4-notdlg noindex">
                    <a id="linkTurnOnAcc" href="#" class="ms-accessible ms-acc-button" onclick="SetIsAccessibilityFeatureEnabled(true);UpdateAccessibilityUI();document.getElementById('linkTurnOffAcc').focus();return
    false;">
                        <!--MS:<SharePoint:EncodedLiteral runat="server" text="&lt;%$Resources:wss,master_turnonaccessibility%&gt;"
    EncodeMethod="HtmlEncode">-->
                        <!--ME:</SharePoint:EncodedLiteral>-->
                    </a>
                </div>
                <div id="TurnOffAccessibility" style="display:none" class="s4-notdlg noindex">
                    <a id="linkTurnOffAcc" href="#" class="ms-accessible ms-acc-button" onclick="SetIsAccessibilityFeatureEnabled(false);UpdateAccessibilityUI();document.getElementById('linkTurnOnAcc').focus();return
    false;">
                        <!--MS:<SharePoint:EncodedLiteral runat="server" text="&lt;%$Resources:wss,master_turnoffaccessibility%&gt;"
    EncodeMethod="HtmlEncode">-->
                        <!--ME:</SharePoint:EncodedLiteral>-->
                    </a>
                </div>
            <!--ME:</SharePoint:SPSecurityTrimmedControl>-->
            <div id="ms-designer-ribbon">
                <!--SID:02 {Ribbon}-->
                <!--PS: Start of READ-ONLY PREVIEW (do not modify) --><div class="DefaultContentBlock" style="background:rgb(0, 114, 198); color:white; width:100%; padding:8px; height:64px;
    overflow:hidden;">The SharePoint ribbon will be here when your file is either previewed on or applied to your site.</div><!--PE: End of READ-ONLY PREVIEW -->
            </div>
            <!--MS:<SharePoint:SPSecurityTrimmedControl runat="server" AuthenticationRestrictions="AnonymousUsersOnly">-->
                <!--MS:<wssucw:Welcome runat="server" EnableViewState="false">-->
                <!--ME:</wssucw:Welcome>-->
            <!--ME:</SharePoint:SPSecurityTrimmedControl>-->
            <!--CE: End Ribbon Snippet-->
            <div id="s4-workspace">
                <div id="s4-bodyContainer">
                    <header>
                   <!----> <div data-name="ContentPlaceHolderMain">
                        <!--CS: Start PlaceHolderMain Snippet-->
                        <!--SPM:<%@Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls"
    Assembly="Microsoft.SharePoint, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"%>-->
                        <!--MS:<SharePoint:AjaxDelta ID="DeltaPlaceHolderMain" IsMainContent="true" runat="server">-->
                            <!--MS:<asp:ContentPlaceHolder ID="PlaceHolderMain" runat="server">-->
                            <!--ME:</asp:ContentPlaceHolder>-->
                        <!--ME:</SharePoint:AjaxDelta>-->
                        <!--CE: End PlaceHolderMain Snippet-->
                    </div>
                </div>
            </div>
        </body>
    </html>
    Any suggestions here....
    Thanks in Advance.
    PMMR

    Hi,
    The Navigation control can be added into your HTML page in the Snippet Gallery:
    The two links below about how to create HTML master page and adding snippets needed into it for your reference:
    http://borderingdotnet.blogspot.jp/2012/12/how-to-create-html-masterpage-for.html
    http://msdn.microsoft.com/en-us/library/office/jj822370(v=office.15).aspx
    Feel free to reply if there still any question.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How to add safety cams to nokia maps

    Hi every one
    I don't know if this was posted before or not...
    I live in Saudi Arabia and the locations of the speed cams are not listed or added to nokia maps
    Is there any way i can add them manually to the app ?
    Thank you for your time and help

    Hellow adrian
    Thank you for your reply
    Map reporter is use for long terms so changes will take effect in upcoming versions or updates .
    What i'm talking about is an easy - spontaneous method that i can use to upload new data to my built in nokia maps ( in my case coordinates of speed cams and redlight cams ) .
    I hope you and every one got my idea
    Thank you again for your reply .

  • How to add range navigation to an ADF table ?

    Greetings,
    I have the following code:
    <af:table var="messageObject" rowBandingInterval="0" id="t1"
    value="#{chatForm.chatRoom.messages}" rendered="#{chatForm.chatRoom.messagesSize > 0}"
    summary="message table" rows="5" first="#{chatForm.first}"
    contentDelivery="immediate" autoHeightRows="5">
    I expect that once that the number of rows in the table is greater than 5 then the range navigation controls be displayed. But this doesn't happen, the table gets simply truncated displaying the last 5 rows and the other ones aren't available. What I'm doing wrong ?
    Many thanks in advance for your help.
    Kind regards,
    Nicolas

    Timo, here is what the documentation says:
    "Range Navigation
    When the list being displayed by a Table is huge, you can enable the Table to break up the list into ranges and display a single range at a time. Range controls are provided on the Table to let the user scroll to the next range, or to go back to the previous range. If the total size of the list is known, a control to let the user jump directly to a particular part of the list is also provided on the Table. Use the Table attributes "rows" and "first" to control the range navigation feature. When the user changes the range, the T able fires a RangeChangeEvent . "
    So, it apears that, as a matter of fact, there are next and prev buttons when the list is larger than that the table. Additionally, there is no any scrollbar slider as soon as the list gets bigger than the table. Last but not least, the JDeveloper's Component Palette doesn't expose any othe table type than ADF Faces one. If by "use Trinidad tables" you mean "use manually Trinidad tables", well, I'm afraid that thhis is not acceptable for a Java IDE aiming to replace NetBeans and Eclipse.
    But thank you, anyway, for your reply.
    Nicolas

  • How to add language arabic for nokia asha 501 rm-9...

    product code 059S9Z8

    you bring your Nokia Asha 501 to a local but genuine Nokia Care Centre,
    you explain your issue and
    they do the rest.
    Which step creates trouble?

  • No option to activate Voice Navigation or Speech synthesis in Z3 !!

    Hi,
    I was trying to figure out how to activate voice navigation in Z3. Looks like there is no such option provided in Z3. Its really troubling with such high end smartphone, need to use touch everytime to ope music/sms/alarm clock dismiss/navigating apps. 
    On Utube, there is a video shows option under settings to Enable Voice feature under Swipe unlock security , which is not available in my phone. Kindly reply. Its annoying using Z3 without such a feature.
    AshPiya

    I had downloaded Google Now but it doesn't help as it uses Wifi. What i was looking for precisely an option like in Samsun Note/Galaxy s by which i can Switch off my reminders/alarms by voice when i am not connected to internet. I hv been using Samsun for almoast 5-6 years but gave up because of battery issue and first time using Sony Z3.
    I have checked in Sony Z3 under reminders/alarm , no such option is available to stop reminders/alarm by voice command. Is that possible in Z3 ?

  • Nokia 6110 Navigator 5.11 Buglist

    Nokia, after a year of no support for the Nokia 6110 Navigator despite many bugs, please readd firmware-update-support in Nokia software updater, and fix those bugs remaining in the firmware 5.11 installed by most Nokia service centers since July 2008:
    1- when alarm is set to workdays "monday-to-friday" (or whatever 5 day-period) the date on the phone doesn't change on saturday night. On sundays it still shows saturday although the time is correct, and the alarm doesn't work till the date is reset and then everything goes normal till the next sunday when the problem happens again.
    2- No matter if you use the original Nokia Sound recorder or third party software, all the recordings have a loud crack sound in the beginning.
    3-Volume +/- does not function while playing games.
    4- Dual line 32kb sim cards fail to switch to the second line and resets the phone when switched to the second line.
    5-Line 1 ringtone and Line 2 ringtone options in profiles disappear for no reason although using a dual line.
    6-Deleted numbers in Logs->Recent Calls-> missed/received/dialled logs still remain in the log list view which shows coloured arrows.
    7-Even if the sent message history is turned off, the numbers which were sent messages are still shown in the log list shown with arrows.
    8- Numbers dialed/received calls list occasionally clears if phone turned off
    9- If the phone gets connected to computer over usb cable, and used once on pc suite mode and then once in the data transfer mode, then the vibration is disabled until you reboot the phone. (Settings suggest the vibration is on, but in fact it is simply turned off)
    10- On the internet bookmarks view, (accessed through the web icon) if a bookmark is deleted or moved to a different folder they are still shown in the root until the application is closed and re-opened. And if tried to open them by mistake the phone responds "it doesn' exist".
    11- If you conect the phone to Nokia software updater by usb cable in pc sync mode, then connect it by data-transfer-mode, all your own created folders including moved icons will be lost and reset to default.
    12-It's not possible to use voice dial with voice synthesis turned on.
    13- No flash lite 3.0 support
    14- If a memo is set or synchronised from outlook the memo still shows on the screen even if the date has been passed.
    15- If we try to change the date of a past memo by changing both the start and end date to a future date the phone gives an odd error message that says: "Alarm time already passed" What alarm time? There's no alarm option or alarm time field in memos.
    16- The phone occasionally shuts down completely (turns itself off) without any warning for some users.
    17- Nokia CK 7W bluetooth carkit and other carkits from other companies (for example Funkwerk-Dabendorf Audio2000 with Bluetooth Adapter version 2) have an echo problem where the remote person hears its own voice and a terrible echo. This seems to be due to the fact, that inbuild microphone on the phone is not turned of completely.
    18- While entering a new phone number after typing the number a phone type is selected such as telephone, mobile, work mobile etc.If selected the wrong type there is no way to change tis type unless the number is deleted and re-entered which is a hassle.
    19- If there are more than one mobile numbers assigned for a contact as "mobile" type (like mentioned above) set default option does not work.
    20- The bluetooth A2DP quality has gone worse. It is skip-happy, and degrading of audio quality is very obvious.
    21- If any mp3s have embedded images in the id3 tag, which are not quite square (e.g. 194pxls by 197pxls in one of my files), the music will play, but the phone will almost totally lock up if you try to use another application, and the album art won't show at all.
    22- Notes in the organiser on the phone cannot be synchronised with the PC via Nokia PC Suite(Outlook 2003).
    23- Music Player on the phone finds "zero" audio files when connected to Nokia Suite via USB.
    24- If a call is made while connected to a bluetooth carkit (CK 7W in my case) the latest number dialed won't appear in the logs.
    25- When navigating in the standard "Nokia Navigator" Route66 application, if the display mode with all info at the bottom (the only mode that display ETA) is set the phone normally remembers this mode between sessions. When signal is lost (typically after a tunnel), the display mode is reset back to default. Please add the newest Route66 updates! As easy as that! Route66 already released 3 new official updates during this time.
    26- If an internet connection is established via the browser and closed, the internet connection stays on constantly until the battery is very hot and voltage is drained only if the e-mail update (push e-mail) is set to "ON".
    27-The streaming mode is problematic. An H.264 video encoded in 320x240 resolution could be watched full screen in the streaming mode in the previous firmware however the phone will freeze within 1 or 2 seconds after switching from the standard window size to full screen size after 4.22 if watched during streaming.
    28- Real Player(Or music player) doesn't update the playlist unless the phone is not restarted.
    29- For some of the users some videos start with the first frame and then shows a black screen for a while and then the video plays normally. (DivX Avi files?)
    30- System startup dramatically slows up if using a HCSD memory card.
    31- Sound cracks occur in high bit rate mp3's if using an HCSD memory card.
    32- The flash provides such an artificial colour tone to the picture which makes the picture looks almost blue or green in all cases.
    33- If a user decides to use an alternative navigation software he/she should be able to remap the dedicated navigator button to the executeable of the 3rd party software.
    34- Sometimes Nokia Navigator-Program is unable to get a satfix, even if satellite-signal is good enough (3 satellites and more above 70% signal-strength). You have to restat the program to get a satfix. Also new Nokia Navigator/Route66-mobile8-version would fix this problem.
    35- When you receive via bluetooth a file with an "unknown extension", there is no way to open the message that contains the attached file and, therefore, there is no way to save the file itself.
    There are certainly more bugs, those ones are the ones found by a few customers, the most obvious ones, that keep us nagging since a year now. It seems, you are not testing your phones, as bug #1 (alarm-clock) for example is obvious and was not fixed since the release of the phone.

    And I'd like to add these remaining ones from our other threads..
    36- When listening to music on the handset and a call comes through, the sound switches to Mono after you hang up and the music resumes playing. And the only way to restore stereo sound is to restart the phone.
    37-6110 keeps showing alot of devices in the "send to" bluetooth menu that was paired with and deleted long ago.
    38-Joystick press can be used for accepting commands at all areas except for messaging. When message is ready to be sent you cannot click joystick and send message. You need to select options and send and then choose select from the menu.

  • New firmware Nokia 6110 Navigator version 6.01 soo...

    Hello,
    I have found on a few different nokia-related-pages that is a new firmware for nokia 6110 navigator (version 6.01). no information about bugfixes, nokia service centers seem to already have it. more to come.

    Ok here comes the first news and bugfix list from 5.11 (and i add 4.22 infos) (i use the numbers from here: /discussions/board/message?board.id=swupdate&message.id=40488&query.id=554906#M40488 )
    a nokia service center did update my phone to version 6.01.
    firs of all: seems to be a again just a mini-upfate as 5.11 was.
    - Nokia 6110 Navigator gets firmware 6.01 (02-09-08)
    - Nokia Navigator-Program is still version 8.0.12274 (11422) as it was in 5.11, no updates, no routing towards coordinates as in newer route66mobile8 available.
    - New firmware seems to get better satellite-signal (not faster, but better signal and therefore more satellites that are actually used)
    - No flash lite 3.0, still 2.0
    - Maybe sound quality improved in carkit-mode for the one using the phone, was not yet able to try to talk with another person
    - Battery bug fixed (as in 5.11)
    now concearning the other bugs:
    1- could not yet try that alarm-bug
    2- fixed, i hear no sound-crack
    3- not fixed, volume +/- still not activated in games
    4- i have no dual-sim, can not try this
    5- idem
    6- not fixed, deleted numbers still in protocol
    7- didnt try yet
    8- not yet noticed, maybe fixed
    9- not yet noticed, maybe fixed
    10- could not reproduce the problem
    11- not yet noticed, maybe fixed
    12- didnt try yet
    13- flash lite 3.0 missing
    14- didnt try yet
    15- fixed
    16- not yet noticed, maybe fixed
    17- in funkwerdabendorf-carkit with bluetooth soundquality seems to be improved, but didnt yet talk with someone else on phone
    18- not fixed
    19- fixed
    20- maybe improved now
    21- didnt try yet
    22- didnt try yet
    23- not fixed, but might be due to the fact, that pc suite has full access during that time to the memroy, therefore musicplayer not
    24- not yet noticed, maybe fixed
    25- not fixed, old nokia navigator-oem/route66mobile8
    26- fixed
    27- no changes
    28- didnt try yet
    29- didnt notice that
    30- no change, still rather slow
    31- not yet noticed, maybe fixed
    32- not fixed, flash still very greenish/blue
    33- no change, button still linked to nokia navigator
    34- not yet noticed, but due to the fact that it is the same version as in 5.11 and i have had the problem there too, the problem might still be there
    35- didnt try yet
    so here we go. you might find out too, what they fixed and what they havent fixed yet.

Maybe you are looking for

  • When I click on Firefox in recent days, there's a long delay and then I'm told to click on the simplified sign-on. How can I fix this?

    Firefox always used to take me to my homepage - AOL. Now it doesn't unless I click on the simplified back-up access method. == This happened == Every time Firefox opened == several days ago

  • Touchscreen Issue envy15 j040tx

    I have envy15 j040tx. After purchase i updated some directx files but after performing that i experienced some ghost touches on touchscreen and now it does not happen. But the problem which remains is that 1 inch strip from left corner does not work

  • Payment Details Problems

    I got an e-mail asking me to change my payment details. There are four problems: One, my payments are still going through, including the current one, which is processing. Two, nothing about my credit card has changed from the most recent payment (suc

  • Function Module for Customer Block

    Hi Friends, Is there any function module to block customer same as VD05?

  • SPAU problem in SAP 4.7

    Hi All, We are upgrading from SAP_APPL release 21 to 27. While doing SPAU of one include, I have selected the option 'Adopt Modifications' and have added some business specific code. At that time we missed to add some code. At preset, this object is