Bug- speakerphone dialing

When dialing a call using the speaker phone, if you press the sleep button twice to turn the screen off, after 15 seconds (only if the phone is still ringing, and the person hasn't picked up) the speaker will shut off.
If you press the home button to get the screen back on, the ringing over the speaker will resume. Its kinda odd, I'm assuming its just a weird bug and that the fix is easy.
Has anyone else noticed this?

Did you try speakerphone?
Here is what I did
1. Dial out a call. (Hopefully to someone who won't answer and has no answering machine)
2. Press Speaker phone so you hear the ringing
3. Press Sleep/Wake one time. You will get a slide to unlock, Press second time it goes to sleep.
Got to press it in slow movements not super fast press. As I did that and was confused myself.

Similar Messages

  • BUG: Speed Dials not functioning correctly when Option button is last used

    There is a bug in WebOS where Speed Dials do not work correctly.  Holding down your speed dial favorites button will not place the call. This happens when the option key is used in launcher or card view before attempting speed dial.
    For instance if your last character of a search you did 4 hours ago on your phone contained a series of numbers and you locked the option key to do so, (or even if you accidently hit the option key last and then did not need it) then an attempt to use speed dial "G" will not work, as your Pre/Pixi thinks you are holding down the "6" key and not the "G" key.
    This needs to be remedied (for instance have the option key press clear out or unlocked as soon as the search is performed or cleared off of the phone) because there is no way to tell what state the option key is in before using a speed dial (not that I want to check and fiddle with it anyway).

    The Z and B keys are the * and # keys. That is why they are not in the speed dial list. Hmmm... while it might be a "bug" at this time your the only person having this issue as far as I can tell. Since the issue moved to another phone it could be that  its related to your Palm Profile. I unfortunately cannot replicate this issue but would like to test something. Can you do a Partial erase on your device and create a new Palm profile? This will see if the issue is still on the device.
    If it is not then the issue is within your Palm Profile. If that is the case I can help you from there. Please post back when you tried this step.

  • Dial pad bug, when dial 08 digit

    When I dial digit 08 from dial pad, iphone got hung, is this bug in iOS 7.0.3 ?

    Not seen this and I have to use the 8 in every call I make. Try a reset. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. After the phone reboots, try it.

  • BUG: Speed Dial "Not allowed"

    When a number in Contacts is saved in the Outlook's format, e.g. +358 (400) 123 456, the Speed dial press-and-hold function result an error message "Not Allowed".
    The workaround is to manually edit the number into unstructured string, e.g. +358400123456.
    Hopefully, the Nokia-Microsoft alliance will help to iron out this kind of incompatibilities...

    Pl. refer
    /t5/Nseries-and-S60-Smartphones/N8-00-Speed-Dial-i​ssue-with-formatted-numbers/m-p/810665/highlight/t​...
    --------------------------------------------------​​-------------------------------------------------​-------​------------------------------------------​--------​--If you find this helpful, pl. hit the White Star in Green Box...

  • Any way to insert a pause in a number?

    I've got a number ported over from my old phone which includes a 'p' for pause and a '#'. The iPhone won't dial the number. Is there any solution to this? Does the iPhone have its own characters for these things? Thanks.

    Yes, I saw the same. My phone has been slow and finicky in some ways since the upgrade. I hope the next software update fixes it. What I had to do was play around with it. Hit the home button, go in through phone, then contacts, as against using the contacts button from the home screen. I have two numbers set up this way so I can place International calls using a phone card. I just tried it again and confirmed the bug. Dialing after going in from the Contacts link on the home screen does not work.
    PS: Unfortunately, for me there was nothing pleasant about "listening" to iPhone do the dialing. After the first pause, every single number dialed is audible, and there's no way that I know of to turn it off!! But this is still much better than having to write down numbers when I paid a bunch of $$$ for this phone and service! My initial preference was for speed dialing during a call, so you could enter phone numbers, credit card numbers (not too smart to save this on your phone, I guess, but still!), conference numbers and passwords, etc. Go, Apple folks, you can do it!!!

  • Cascading Phone Notification UCCX 8.5(1)

    I was curious if anyone has an example of an escalating/cascading phone notification script?  I know this can be done in Unity Connection much easier, however, my version of UCX currently contains 2 bugs which dial directly with notifications.  Therefore, I’m trying to provide a temporary solution using UCX until I get my UCX cluster upgraded.  The scenario is:
    1.       Caller leaves a message (record prompt)
    2.       Call sent to on-call cell 1 and the message is played
    3.       User can press a button to “acknowledge the call”
    4.       If caller does not acknowledge the call within x number of minutes:
                 a.       Call sent to on-call cell 2 and the message is played
                 b.      User can press a button to “acknowledge the call”
                 c.       If caller does not acknowledge the call within x number of minutes:
                                                                   i.      Call sent to on-call cell 3 and the message is played
                                                                 ii.      User can press a button to “acknowledge the call”
                                                                iii.      If caller does not acknowledge the call within x number of minutes:
    Just looking for an example.  I can modify to me needs.  Thanks for the help!
    Thanks!
    William

    When you say "in X number of minutes" do you mean that the active call will be up that whole time?  Or did you mean, that the script will keep calling them back for X number of minutes, until the oncall person acks the call?  I think it's obvious that the voicemail answering on the on call cell will prevent an arbitrary length of waiting, so perhaps you did mean: call them, wait 5 seconds for them to acknowledge, and if they don't, call them back immediately.  If X minutes have expired trying to get an acknowledgement, then move to the next on call cell.  With that said, it's my opinion that calling back a quantity of times, versus a duration of time, is the better approach.
    Anyway, here's some psuedo code to get you started.  It's bare bones, so make sure you add in the customer warm fuzzies and sanity checks.
    Variables
    Contact oncall_contact = nullString[] oncall_numbers = new String[] {"916125551212", "916125551313", "916121414"}Iterator oncall_numbers_iter = com.cisco.util.EmptyIterator.iteratorString oncall_number = ""Document recording = DOC[]Prompt rec = P[rec.wav]Prompt ack = P[ack.wav]int oncall_retries = 0int oncall_retry_limit = 3
    Script
    Start/* Answer the call */Accept (--Triggering Contact--)/* To allow the caller to just hand up when finished recording, a la voicemail, catch hang up exception */On Exception (ContactInactiveException) Goto Begin Cascade/* Get a recording from the caller */recording = Recording (--Triggering Contact--, rec, 30)  Successful    /* Hang up on the caller */    Terminate (--Triggering Contact--)  Unsuccessful    /* Recording failed, play system problems */    End/* The caller has left a recording, time to start the cascade */Begin Cascade:/* Clear the hang up listener */Clear Exception (ContactInactiveException)/* If the call to the oncall number disconnects prematurely, see if we need to call it back */On Exception (ContactInactiveException) Goto Check for Call Back/* Setup the array iterator so we can go through the list of numbers */Set oncall_numbers_iter = oncall_numbers.iteratorGet Next Cell Number:/* Restart the retry counter for every oncall number */Set oncall_retries = 0/* If there is an oncall number to try, then try it, otherwise, we're done and no one answered */If (oncall_numbers_iter.hasNext())  True    /* Store a reference to the current oncall number */    Set oncall_number = oncall_number_iter.next()    Make a Call:    /* You'll need a valid CCG and CMG here in order to play media and capture DTMF */    oncall_contact = Place Call (to oncall_number)      Successful        /* We were able to successfully call the oncall number and get an answer, let's ask for an ack */        /* Set retires to 0, timeout to 5, and only enable option all keys for the ACK */        Menu (oncall_contact, ack)          Any Key - ACK            /* If the call disconnects end the script, we're all done */            On Exception (ContactInactiveException) Goto End of Script            /* We have an ACK, play the message to this person and loop it indefinitely */            Play Recording:            Play Prompt (oncall_contact, recording + DP[1000])            Goto Play Recording          Timeout            /* No ACK */          Unsuccessful            /* Wrong DTMF Key, how? */        NoAnswer          /* No answer in the timeout period, try again */        Busy          /* Cell was busy, try again */        Invalid          /* Oncall cell typed wrong, or no pattern in CUCM to match, no sense in trying again */          Goto Get Next Cell Number        NoResource          /* System is too busy to process this call, delay 10 seconds and try again */          Delay 10 sec        Unsuccessful          /* General UCCX failure, just give up */          Goto End of Script      Check for Call Back:      /* Do we still have a retry left for this number? */      If (++oncall_retries <= oncall_retry_limit)        True          /* Yes we do, retry the number */          Goto Make a Call        False          /* No we don't, go to the next number */          Goto Get Next Cell Number  False    Goto End of ScriptEnd of Script:End
    Note that I use the cascading feature of the script to avoid some extra steps.  I.e., When the Menu times out on the ACK, it falls to the Cechk for Call Back label.
    Again, this is puedo code to get you started.  It's not meant to be plug and play.  You'll need to test and tweak it.  I'll watch the thread if you have any questions or hang ups.  No pun intended.
    EDIT: Code formatting because there was an issue with the rich text editor
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • Just Type Preferences not sticking/buggy

    No device
    When I restart my phone any quick action or just type settings don't seem to stick, and I need to redo them...
    Anyone else experiencing this?

    I know this is an old thread, but it seems like the bug maybe wasn't resolved and I'm experiencing it as well:
    My device is the Veer, running 2.1.2. Preferences *were* sticking, but after running Doctor for an unrelated bug (voice dial wasn't working; it is now) any reordering in Just Type prefs didn't stick anymore. They would even revert before I closed the prefs card. I even uninstalled my theme and patches just to make sure they weren't screwing with anything.
    It seems to me, like others have said, that they reorder to be alphabetical and with 3rd party apps on bottom. Which sucks when what I use most in Just Type are twitter/FB posts and SMS. In order to get to them quickly, I have to keep only those 3 actions and delete the rest.

  • Bluetooth Speakerphone with Voice Dial?

    Hi All,
    Because the iPhone does not support voice dialing, I am looking for a speakerphone that does it by itself. I have found the Parrot Minikit Slim, which attaches to the visor, and downloads the contacts from the phone. Then all I have to do is press a button and say the name of the person I want to call. The kit's voice recognition finds the contact, and dials it. It even asks, "Home or Cellphone" if I did not specify. This part works very well, and I am very pleased with it, but the call quality does not seem to be that great.
    I was wondering if anyone knows of any other bluetooth speakerphones that will do this. It must be able to download the contacts and do voice dialing on its own, as this is the only reason I want to replace my Jawbone II which has excellent call quality.
    Thanks for any suggestions or reviews.

    I have 2 Parrot Minikit Slims and really like them (one in each vehicle). The connect to the iPhone with no problem, and download the contacts, then you can do voice dialing from the kit without touching the phone at all. Call quality is pretty decent, the reason I started this post was to see if there were any others that did this and might be better. We use them all the time.
    I haven't had any issues with disconnections. If you walk out of range, the kit will turn itself off in a fairly short amount of time... 5 minutes maybe. I just got into the habit of touching the power button whenever I get in the truck. A single touch turns it on, and if it is already on, it does nothing.

  • Contact bug : contact phone numbers in edit mode are not shown in "dial" mode

    Contacts can have seemingly unlimited phone numbers as seen in the contact edit mode, though very few are shown in the corresponding non-edit mode. Of course, Dialing is not supported in the edit mode.
    I have found that contacts that include pause characters or block characters are not properly displayed in the contact "dial mode".  If you every try a conference call service, this is important to you.
    At&t uses the comma as a pause, and Verizon uses the letter "t" as a pause.  *82 temporarily blocks your caller id.  Somehow the WebOS software that chooses which items to allow me to dial has bugs and worse, there is no clear way to prioritize so I am completely at the whim of the software.

    I have tested entering 12 phone numbers on my own Pre Plus and all the numbers display in the normal contact field. How many phone numbers are you trying to to display?
    The dialing options on the Palm Pre Plus are as follows:
    To insert a two-second pause in the dialing sequence, enter a T where you want the pause to appear. To add a + symbol in the dialing sequence for international dialing, press and hold 0 (zero) in the location where you want the + symbol to appear. To insert a stop in the dialing sequence, enter a P where you want the stop to appear; to dial the next set of numbers after the stop, tap the screen.
    As far as 3rd party special dialing character entry you would need to check with the 3rd party on how to enter this information into you device for your conference calling service.

  • 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 )

  • Directly Dialing a Phone's Speakerphone/Intercom

    We have a client that is requesting to be able to dial directly to the speakerphone (intercom) of another phone. We know that we can configure an intercom button on the phones to do that, but if there are 20 phones in the office, the receptionist would have to have an additional 20 buttons just for that purpose. Is there a key combination that can be pressed before dialing the extension that will do the same thing? Ex: 6101 would automatically go to the voicemail of extension 101.
    We currently use CCA and CME. Yep, UC5xx. Phones are SPA509G. I can dial directly to voicemail, but my question is regarding dialing directly to speakerphone/intercom. Does this help clear things up?

    You will need to configure additional ephone-dn (these can be single line), configured as intercom, You can assign these as overlay to the main DN.
    Note: I have no idea if that is possible with CCA. No issue with CLI.

  • N95 dialing/answering in speakerphone

    On the N95, how do I dial or receive a call in speakerphone mode?
    When dialing, the loudspeaker option doesn't show until it connects to the other end and is dialing.
    When receiving a call, I have to answer first, then I can go into loudspeaker mode.
    Is there a "one-touch" way to do this? The current way is inconvenient when on the road.
    What would be ideal is: When dialing, right after I press the send button I can press the left/right soft key to go into loudspeaker mode. When receiving, I can press the left/right soft key to answer in loudspeaker mode. This seems more intuitive to me.
    Thanks.

    Most likely the telco is prompting for the digits prior to the CONNECT message and therefore UCCX will not be able to send the DTMF as it hasn't received a CTI message from CUCM that the call is connected.  It still thinks it's ringing and waiting for an answer.  So my guess is you cannot do this.  You will need to figure out a different work around.
    One could be doing a blind transfer (call redirect) and let the caller enter the code.
    Another could be get a different circuit which does not require a code (centralized billing) and use that exclusively for applications like this one, leaving the other trunks for regular LD calls.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • Jawbone Bluetooth / Speakerphone Bug

    I have the Jawbone hooked up to my iPhone. When I answer a call and pick speaker phone, the iPhone initially connects to the speakerphone and then, after a word, jumps the audio selection back to the Jawbone. Can anyone with an iPhone and Jawbone duplicate this bug?

    Actually, I have a similiar bug. My husband and I both have iPhones and JawBone headsets. We both have the following problems:
    1. If the headset and phone are paired, then if I make a call NOT using the headset, the following call (incoming or outgoing) will not be picked up by my jawbone headset -- even though the Bluetooth option says it is paired and when I make/receive that call, I do not get any audio source options. I have to unpair and repair every time this happens -- annoying!
    2. If I want to use the phone and not the ear piece, and I click the audio source as iPhone, it will still send it to my headset. I then have to click the iPhone audio source a second time. This is hard to manage since I'm expecting the call on the iPhone and have it up to my ear (and the screen turns off, of course).
    I hope this gets fixed!!

  • Speakerphone bug identified in 1.1.2

    While on a call using speakerphone, adjust volume while you talk. Your voice will completely drop out to the listener on the other end. Drop outs seem to last about 3-4 seconds, enough to drop 4-5 words or so each time you press the volume (in either direction).
    I'm told this is a mic gain problem, software in nature, and was worsened by 1.1.2. Even though the speaker and mic are so close together, they apparently can be adjusted to work together - Motorola has done it for years.

    (I assume with the recently added/edited articles link ;D)
    i eventually realised that trying to conduct the conversation using edits in my previous post wasn't tremendously helpful. yep ... that one showed up buried underneath all the KB docs related to Mac OS 10.4.6. we may yet see a few more explicit reports of bug-fixes coming through over the next few days via that link:
    Articles modified in last 7 days
    ... although i don't have as good a feel for that as i do for patterns of bug-fix reports after new itunes versions come out. (less practice.)
    love, b

  • Bug: dial gauge is not working adf mobile

    Hello there,
    I try to use Dial Gauge component in ADF Mobile. However it does not consider the min/max value and value from my input. It shows only the default values. Any comment is appreciated.
    Regards,
    It is verified as an issue so it needs update.
    Edited by: elmariachi on Feb 4, 2013 11:24 PM

    That is a known issue (Bug 14654084) should be resolved in the next version through ER - 15935538.

Maybe you are looking for

  • In adf,how to delete a file generated on server,when the webpage is closed

    Hi, I have an application consisting of 2 pages. in the 1st page i will give some input details and when i click on submit, some java code is getting executed in the back. That java code generates a csv file in the server location. after succesful ex

  • I can no longer send emails and my drafts folder no longer functions. How do I fix them?

    I am using Windows XP. I have Mozilla Firefox 3.6. My Gmail account no longer can send emails and my Drafts folder is inoperable. I can see, save, discard, or edit anything in Drafts. This is only with my home pc. Any other computer (library, work..)

  • External Hard Drive requirements needed?

    Hello. I'm very new to Mac...I have an external hard drive from my PC and was wondering what the requirements are to run TimeMachine...I realize that I would have delete everything on the hard drive if I wish to use it. It is a Maxtor. Thank you.

  • Authorization problem with infoobject

    i created a query and assigned it to role allusers. when the user tried to execute the query, he got not authorized for infoobject ZXXXX. so i did SU53 and it shows it is checking for S_RS_IOBJ and the user master record has 0* Z* and Y* for infoobje

  • Hi All, doubts in XI..please help

    HI Gurus, I have some small doubts here...iam a beginner...please help me.... 1) What 2 Data Types are automatically created when the Namespace is saved in the Integration Repository? 2) purpose of the setting to "Permit Importing of SAP IDOCs or BAP