E71 - Weird Dialing Bug

With contacts who have more than 1 number assigned to them, I dial their name on the main screen, and then press the Send button, which is supposed to show me the various phone number choices to dial. It stopped doing this, and doesn't do anything until I press another key on the pad, only then it shows me the numbers.
I had the firmware updated, and so far have had the company replace the phone for me 3 TIMES already. Each model, after a few days or weeks stops working like this.
Am I doing something wrong?

Nope sorry doesn't do it here either.
Before you reset the handset, remove the memory card and see if it does it with the Memory card in the device.
There could be something in the card thats causing it to hang, what applications have you got running?
Shunts...
I will mostly be communicating with a Nokia E72 Zodium Black
Nokia E72-1 with Vr 051.018.207.04 Software
If this post helped... Add some kudos!!

Similar Messages

  • Stacks weird visual bug

    Hi,
    I'm running Leopard 10.5.3 on a 1Ghz iMac G4 which came with a GeForce4 MX graphics card. I've been using stacks from the beginning (and loving it) but every time I use it, a weird visual bug is triggered; basically white semi-transparent rectangles appear along the edges. You can find a screenshot of this at http://picasaweb.google.com/luis.beca/StacksBug/photo#5206710255993309346. Any clues as to why this is happening or how to solve it?
    I should point out that I have been stuck with this problem from the very beginning, not just the latest Leopard version 10.5.3. I have an Intel MacBook Pro where this is not an issue.
    Many thanks in advance
    Luís
    PS - How can I submit this to Apple?

    I think you can thank Apple for this.  See this discussion.
    Photoshop CC: MacOS 10.10 Yosemite: Graphics driver problem
    Nancy O.

  • Weird subtitle bugs

    I'm running into several weird subtitle bugs in Encore 2.0. My project is a 33 minute training video with 4 subtitle tracks - English, Chinese, Spanish and Russian. I know the project was initially created in 1.5, but I don't remember if the subtitles were imported before or after the conversion.
    The first is that some of the subtitles that have been edited are showing the original version of the subtitle. In most cases, if I go back to the edited version in the timeline and add a space at the end, it seems to update to the new version of the subtitle.
    The other issue is that in many cases, the subtitles are staying on the screen longer than they should be. In one instance, the subtitle stayed on the screen for about 15 seconds more than it should.
    Any comments or suggestions?
    This will be the last project for me in Encore - I just can't afford to spend multiple days working around Encore and its "features"
    Thanks,
    David

    Experienced the same subtitling "bugs" you described.
    Opened a ver. 1.5 project in ver. 2. Then once in ver. 2, I revised some text in several subtitle clips. The revisions were displayed o.k. during preview, but when I built a new DVD Volume from ver.2, and tested the playback in WinDVD software player, it was the "old" subtitles that were displayed!!!!!
    Apparently, the Encore 2 programmers overlooked a crucial subroutine in their coding. If i'm not mistaken, when you type-in or edit a subtitle clip, the program module that runs is something like a wordprocessor that works with the native fonts and formatting; the text in a subtitle clip is later rendered by Encore as a masked bitmap file overlaid onto the main video when you turn on the subtitles when you build the DVD volume (it's like in Photoshop where a text layer will be editable until you rasterize it, in which case the "text" becomes a bitmap image which you can no longer text-edit). I guessed that the edited subtitle clips were not being re-rendered by Encore. So, to work around this, I created/added new subtitle clips next to the "old" one and re-typed the text with the incorporated revisions, then deleted the "old" clip and repositioned the recently added/created clip. Afterwards, the subtitles with the corrected text displayed properly when I played back a re-built DVD volume.
    But although this "work-around" works, it would simply be too bothersome if you had to revise hundreds of subtitle clips!!!!! A situation I later found myself confronted with!
    What I did, then, was I duplicated the original subtitle track (which Encore failed to re-render properly) on which I had done the revisions; then, once the duplicate subtitle track had been pasted by Encore on the timeline, I deleted the original track and re-built a new DVD Volume. This time, all the revised subtitle clips were displayed correctly when I played back the volume in the software DVD player.
    Nevertheless, I hope Adobe becomes aware of this bug and implement the appropriate fixes.

  • E71 very annoying bug

    Try this on your E71 communicators please. 
    I'm facing one strange bug and wanted to ask some of the E71 happy owners to try to trigger it, 'cause I'm not sure whether the bug is native or is due to some programs I installed.
    Here's the sequence of actions that triggers the bug:
    0) Contact search is turned on (tools > settings > phone > call > contact search = on)
    1) In the home screen, start typing the name of an existing contact having 2 or more phone numbers in it, but with no default number for a phone call selected for it
    2) When you see the desired contact in the list above, scroll up with the D-pad and highlight it
    3) Press the green Dial key on your keyboard - the list of the contact's phone numbers appears
    4) Now press the Cancel key (right soft-key), like if you decided not to call the contact
    5) The phone hangs and after 3-5 sec restarts - here's the bug!
    P.S. I have the latest phone software available. 

    Nope sorry doesn't do it here either.
    Before you reset the handset, remove the memory card and see if it does it with the Memory card in the device.
    There could be something in the card thats causing it to hang, what applications have you got running?
    Shunts...
    I will mostly be communicating with a Nokia E72 Zodium Black
    Nokia E72-1 with Vr 051.018.207.04 Software
    If this post helped... Add some kudos!!

  • Weird AudioFileStreamParseBytes() bug

    This is driving me batty. I'm using AudioFileStreamParseBytes() to parse data from an mp3 Shoutcast stream and then hand it off to the Audio queue for playback. The code works fine for all the Shoutcast streams I've tested, except for one - and of course the one that doesn't work is the one I really need to work.
    From what I've been able to determine, AudioFileStreamParseBytes() is frequently getting confused by the mp3 stream. It's an MPEG-1 layer 3 VBR stream, at 44100, with an average bitrate of 80. The stream also includes a CRC-16 checksum in each MP3 frame. The stream is being generated by a Barix Instreamer 100 (in case that matters). The stream also plays fine via iTunes.
    I'm cross-referencing the stream data with a network sniffer and can confirm I am receiving valid mp3 frames from the Shoutcast server. I also can confirm this identical valid collection of frames is being passed to AudioFileStreamParseBytes(). However, when AudioFileStreamParseBytes() calls my packet callback function with the parsed data, it will frequently skip a valid mp3 frame header and will instead think some data in the middle of the frame (which happens to start with FF) is the mp3 frame header.
    Has anyone seen anything like this? The problem is so frequent it occasionally will happen on the very first frame, causing the AudioFileStream logic to misidentify the type of stream (usually resulting in an incorrect frequency or file type).
    I'm tempted to just bypass using the AudioFileStream and load the mp3 frame into the AudioQueue directly from my TCP stream, but I thought using the AudioFileStream was supposed to offer some better error handling in case data transmission is temporarily interrupted. As it seems right now, however, the AudioFileStream is introducing errors of its own - at least with this one problematic Shoutcast stream.

    Oddly, the problem with AudioFileStreamParseBytes() only exists when compiled for a Mac OS target. If I run the same code on an iPhone (either via the simulator or a real iPhone device) the function parses the MP3 stream just fine.
    Weird...
    Fortunately, my real target is the iPhone (I was just doing initial development on a Mac since I thought the audio stream debugging would be easier/faster - silly me!), so I guess I don't really mind this bug anymore.

  • N80 dialing bug

    I've experienced a bug with my N80 since I got it -- after a while (can't tell how long, differs) it refuses do dial. No matter what I try -- select a name from the contact list, dial a number directly, dial someone from the log -- it does nothing, as if I never selected "Call -> Voice call" or pressed the dial button.
    I can't really tell what causes this, but I think this happens if I try to dial someone from the contact list that has more than one number. It gives me the list of numbers, I press the dial button, the list disappears, and then the thing described above happens, therefore it's not a hardware problem, the button press is registered by the phone, just nothing happens after it.
    The only thing that fixes it is a reboot.
    I've updated the firmware three times now, hoping it will go away, but it doesn't, even with this latest version. Even the "factory default" firmware had this problem.
    Does anybody have the same problem?
    My phone is an N80 Internet Edition RM-92 EMEA (product code: 0542808).

    I had this and Nokia sent me a new phone . Although the button works something is wrong with the chipset. Send it back )

  • Bug Report E71 - Post (serious) bugs here.

    Hi,
    Maybe it's wise to have a dedicated bug report topic for the E71.
    So not discussions here .. just USEFULL reports.
    Bug #1 :
    Situation:
    - I am having a sip internet-call (native SIP client) with an Asterisk server.
    - put the call on 'standby' (by menu Options)
    - i press the 'Options' softkey again
    - phone freezes. Only battery removal can restart it.
    (it also freezes after doing some random key presses .. which i can't remember exactly .. but the standby is not stable.)
    Bug #2:
    - please fix color-settings for the camera . There is 'purple' all over.

    501.21.001 on RM-357 (E71-2) Since upgrading to 501, I've had two major problems. 1) rarely (it's only happened twice), the SMS application will hang when attempting to reply to a message. The original message stays on the screen and nothing will let me out of the app. The phone will respond to the power button, however, and seems to work fine after a reboot. 2) battery life and/or battery meter is terrible. Battery meter will stay near the top then suddenly drop to 2-3 bars remaining. Energy Profiler seems to confirm my power usage is about where it used to be (drawing about 0.12W with the screen off and Gravity running in the background). Phone will then reach 1 bar and give "battery low" warnings, but I'm not convinced the battery is truly low. Last night I was on one bar for over two hours, Gravity was left running, I send and received a few texts, and I was connected to my in-car bluetooth for about 25 minutes, and the phone did not die. On the original firmware, I would never have made it through all that on one bar, which makes me think the bug is with the battery meter, not the battery life itself.

  • E71 Cannot dial from Contacts List

    With my E71 phone I cannot dial numbers directly from my Contacts List. I have to write number down then manually dial. What have I set wrongly? How can I correct this?
    User of E71 Mobile Phone
    Solved!
    Go to Solution.

    I found the answer myself. Just switch the phone off and on again to make it re-boot. Frustrating but just like a computer! or maybe it was taking it 30,000 feet into the air that cured it!!
    User of E71 Mobile Phone

  • Can you reproduce this weird playlist bug???

    I see this on Windows 7 and Windows 8.   Spotify desktop app.   Curious if it happens for other people, or on any other platforms.
    1. Create a new empty playlist
    2. Add six albums each with at least 10 tracks.  I drag and drop the albums to the playlist, one at a time.  You should now have at least 60 tracks in the playlist.
    3.  Use the default playlist sorting method,  By that I mean, don't sort the playlist by song, artist, album name, or date.  Should be the order you added the albums.
    4.  Scroll to the bottom of the playlist and highlight all of the tracks in the last album.  Select the first track in the album with the mouse and then hold CTRL while you arrow down or mouse click to select the rest of the tracks.
    5.  Now drag the selected album up to move the tracks above the second to last album.   You're effectively swapping the bottom two albums in the playlist.
    ^^^ At this point I get an error message about adding duplicate tracks to the playlist.  Which is strange because I have not added any new tracks, I'm only  reordering them.
    6. Now create another new empty playlist.
    7.  Select all of the tracks in the first playlist.  CTRL-A works.   And drag and drop them to the new playlist
    ^^^  Notice the new playlist now has TWO copies of each album!   If the first playlist had 60 tracks, this one has 120!!!
    Weird, eh?   Very frustrating when I make playlists of full albums.... 

    Bug reproduced with LibreOffice 3.5.1.2 on Arch x86_64 here.
    officeuser wrote:Can you also reproduce the bug? Can you create a gdb log of the bug according to these instructions?
    I'm afraid I can't. At step 3, when I try to run base within gdb I get no further than the "Database assistant" dialog. Base freezes as soon as the main window is opened when running in gdb.

  • E71 strange update bug

    I recently updated my e71 from its initial software version v1xx to v400.21.013.
    During the process ovi suit told my it lost communication with my device and that i need to replug my USB cable, i did that and a minute or so after that it told me that the install failed but after starting the phone and connecting it to the suit it showed the new software version.
    After browsing the phone for abut 10 minutes everything seems to work fine.
    is this a random bug or a known problem, just want to know for my own peace of minde.

    Hi,
    This is a user to user forum and as such your post may or may not be read by Nokia. If you wish to contact Nokia directly, you should use the "Contact us" tab on the top right of this screen. 

  • Weird graphic bug on n760 twin frozr oc edition ?

    Greetings;
    i have something weird bug on my card. while scrolldown on internet black images top sides turns to green also sometimes in games i got green and purple pixels part of objectives and all pictures on firefox or internet explorer top corner have "shadow effects" when i scrolldown plus when i search something on google all blue links turn to purple when i scrolldown i didint even click them when i stop scrolling they are turns to blue again. this is happend me before 560ti hawk i dont know what should i do ?
    i7-2600k
    16gb ram
    z77a-g43 mainboard
    650w psu
    always updated windows 7
    not any oc. just stock
    p.s.: sorry for bad english

    Quote
    https://www.dropbox.com/s/md8zf4yha2zdyj1/WP_20150318_018.mp4?dl=0
    https://www.dropbox.com/s/w6no4xurq4cu6x0/WP_20150318_020.mp4?dl=0
    Quote from: xAngelusx on 19-March-15, 04:07:03
    not bluring you can see images changes color green/blue/pink
      i can't see anything wrong in this movies
    Quote
    i have something weird bug on my card. while scrolldown on internet black images top sides turns to green also sometimes in games i got green and purple pixels part of objectives and all pictures on firefox or internet explorer top corner have "shadow effects" when i scrolldown plus when i search something on google all blue links turn to purple when i scrolldown i didint even click them when i stop scrolling they are turns to blue again. this is happend me before 560ti hawk i dont know what should i do ?
    you have the same issue with your old card too??
    can you test your card in another PC?
    have you tried to reinstall OS?
    have you tried a different cable for the monitor and/or a different monitor?

  • Weird iCal bug after 10.4.8 update

    After updating to Mac OS X 10.4.8 I get the following display bug with my iCal reminders, i.e. the reminder appears way off to the side of the screen. This happens on both of my machines:
    http://web.mac.com/csearles/iWeb/Site%202/Photos%202.html
    G 4 Cube   Mac OS X (10.4.7)  

    Hello Chris.
    Apparently noone at Apple cares enough to
    respond to this issue...
    Sorry you and at least one other person are experiencing this problem but FYI - this is a user to user help forum only that is provided and moderated by Apple so it is a very rare when an Apple employee responds direct to a post or thread here.
    Since I haven't experienced the same and this is the first I've seen such a problem reported, this issue may be caused by a problem with the iCal preference file.
    Quit the iCal.app first and locate the iCal preference file in your Preferences folder at Home > Library > Preferences. Move the iCal preference file to the Desktop.
    Launch iCal and check your iCal settings since all settings are stored in the preference file for the application.
    If this resolves it, you can delete the old iCal preference file from the Desktop. If you can determine this doesn't resolve it before updating any preference settings, you can replace the new preference file created with the old preference file placed on the Desktop with the application quit before doing so.

  • Very Weird IOS Bug - iPad and iPhone

    This is a really weird scenario - which I hope someone may shed some light on.
    I'm building a new website, and there are parts of the website that don't function at all on either my iPhone 5, or iPad 2  - (both on IOS 8.3) , yet when I try the very same thing on other peoples iPads or iPhones (various types - some identical configuration to mine), it always works perfectly (I haven't found anyone else's iPad or iPhone yet where it doesn't work).
    I've tried everything, upgrading from IOS 8.1 to 8.3, shutting down, removing all cookies and history (repeatably), turning off javascript then back on etc  - yet for some reason nothing changes and I cannot get the functionality to work on my iphone or ipad.
    There are a number of bit of functionality that fail, but an easy one to test is:
    1/. Go Here: http://test.chillisauce.co.uk/hen/london/cocktail-making_15598/
    2/. Click the save button
    3/. When the modal opens click the top button labelled "Yes - Make A Stag Do"
    On my iPhone  / iPad the button does nothing. If the code is working on your iPad / iPhone , then you will be taken to another page - if not, like me, the button does nothing.
    Even if you don't know what the issue is, I'd be greatful if you could tell me if the function works for you or not.

    Hi Big Zee,
    It works fine on my iPad mini and my iPhone. Maybe you have some old Javascript stuck in your cache.

  • Dialing bug nokia N80

    My phone refuses to dial.
    If i manually type in a number and press call it works but whenever i try to dial a number from my contacts / call log or number in a text message it does nothing as if i never pressed the button. I tried options then call and nothing again just kicks me back to the contacts page.
    It has to be because of the new firmware (v 4.0632.0.38) i put on the phone because i noticed this problrm as soon as i updated.
    I've taken the phone to Nokia Care Centre at least 3 times now and im always going back which i have to do again tomorrow because they are claiming it's fixed but obviously not.
    They've tried reinstalling firmware, virus scanning, reformmated memory card and nothing seems to work.
    I'm fed up with it and am going to ask for a replacement because im convinced this problem cannot be fixed. If it is a firmware problem then i hope it's fixed for future versions.
    Has anyone witnessed the same fault as me or has any feedback or help on this problem that can assist me??

    Hi juzz18,
    I have the same problem with my Nokia E60. I have no idea what to do. A few days ago I upgraded my firmware to the lastest version and no resolution at all. Tomorrow I'll go to the service center and I'll see what they'll do. The bad think is that this dialing problem happens to me absolutly chaotic, I dont know what cause it and when again I wont be able to dial. Once I have a big need to make an external call while I'm driving and my phone wont dial, and I should restart the phone, but I was driving and it was really dangerous! I hope someone to resolve that problem!

  • Weird Lightroom bug

    This bug has existed for a number of Lightroom versions, starting from 1.4. After working with a lot of images and using the shortcut menu extensively (right-click menu), right-clicking will suddenly stop working, and so will many shortcut keys. For some of the shortcut keys, bizarre behavior occurs. For example, CTRL+Z will cause a particular preset to be applied, rather than performing an undo.
    The only "fix" for this problem is to restart Lightroom. Any ideas on what's going on?

    Lightroom RC3.5 is what brought me here. Wanted to see if the issue had been addressed. It's not mentioned but I guess I'll give it a try.
    As far how to reproduce I think the original poster nailed it. Just work in LR for awhile and it starts to do exactly what was posted. Closing LR and restarting does fix it until it starts acting up again.

Maybe you are looking for

  • Is a scrolling view available in the ical month view?

    Is it possible to view a month begining in the current week and not from the first week of the month? In Now Up to Date this is called a "scrolling view." If this is possible in ical how do I do it? Thanks for the help. JEBNY

  • SC Item in transfer process

    Dear Gurus, Issue:      SC approved while IPC server was down.      PO not generated.      SC stacked in the status u201CI1111u201D-Item in transfer process-      Alert message appears under LOCAL error Actions taken:      Not able to delete via

  • Mac Word Crashing when saving or spell check

    I just got my macbook in January. I have been having this problem since then. Occasionally when I press command+s or optioncommnandl while in Mac Word the program shuts down entirely. This happens EVERY time I do spell check while typing a document w

  • Aperture and original iMac G5

    I have an original iMac G5 (1.8GHz) from 2004. I just download the Aperture hardware test app from Apple and was really disappointed that it reported that I cannot use this application. Apparently my graphics card does not meet the minimum requiremen

  • IPad2 loses wifi when xbox360 is on

    My ipad2 loses it's wifi connection whenever my son uses his xbox360.  They are both connected to a Belkin N750 dual N router.  The Xbox is connected to the 2.5 MHz channel, while the iPad2 is connected to the 5 MHz channel.  Does anyone know of a fi