DTMF and iPhone 6 Plus

I am enjoying my iPhone 6 + but today when I tried to join a conference call, I could not enter the call because the conference bridge wouldn't recognize the DTMF tones.  I tried on a second iPone 6 plus and had the same problem. I ended up having to use another phone. 
Surely this is a bug. I never had this problem with my iphone 5 on IOS 7.

Sprint customer service sorted the problem out.  Here's the solution.
1)Turn on the home Wi-Fi on
2)Connect the phone to the Wi-Fi-
3)Move to a strong Wi-Fi zone
Tap Phone.
Tap Key Pad if necessary.
Type ##CLEAR# (##25327#)
Tap Call.
Tap OK at the Resetting Subscriber settings prompt.
Allow the radio to reset

Similar Messages

  • Resolution capped at 1136x640 on iPhone 6 and 6 Plus

    Hello all,
    Using Starling or native display list, I simply can't get to render at the true resolution of an iPhone 6 (1337x750) or an iPhone 6 Plus (1920x1080).
    Using AIR 15, 16.0.0.283 AND 17.0.0.96 (yes I saw that uploaded a few hours ago) on Windows or Mac.
    I've had problems in the past with recognizing resolutions due to launch images being improperly configured. I do however have the [email protected] (1242x2208 for iPhone 6 Plus) properly loading since the release of AIR 16.0.0.2**.
    The very problem is apparent in the main class at boot time with the native stage.
    stage.stageWidth = 1920 (configured in-line from the .swf)
    stage.fullScreenWidth = 1136 (actual runtime resolution)
    This problem ONLY occurs with iPhone 6 and 6 Plus. Desktop builds, iPad retina and non-retinas and Android devices work well. I've tried every possible configuration in the descriptor, normal and fullscreen mode, etc etc.
    For the time being I have my game do scaling and the rendering looks OK, but it still isn't running at the native resolution of the device.
    Has anyone else had this issue?
    Thank you!

    Hi Nicola,
    Thanks for reporting the problem, However we verified it and found that you are using incorrect launch image name for iPhone 6 and iPhone plus. Please find below the correct names.
    iPhone 6 :  [email protected] ( 750x 1334 )
    iPhone 6 plus : [email protected] (1242 x 2208)
    Please let us know if you still face any difficulty.
    Regards,
    Jitender

  • After upgrading to YOSEMITE, I tried to use Airdrop between my iMac and iPhone 6 Plus but they don't recognize each other. It also didn't recognize my iPad. I need help

    After upgrading to YOSEMITE, I tried to use Airdrop between my iMac and iPhone 6 Plus but they don't recognize each other. It also didn't recognize my iPad.
    Please help!

    After upgrading to YOSEMITE, I tried to use Airdrop between my iMac and iPhone 6 Plus but they don't recognize each other. It also didn't recognize my iPad.
    Please help!

  • Mixed results on iPad and iPhone 6 Plus with background image. How to fix this?

    Flash Professional CC
    I'm having an issue with adding images on iPhone 6 plus and iPad. I'm getting mixed results with two items: 1) a background image and 2) a button that should appear at the bottom left-hand corner on any device. In one case the background image appears enlarged and only shows about 30% of itself. In the other case, the bottom left-hand button appears about 50 pixels to the left when x=0. I also get different results when I set the following:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    This does not produce the expected results. I would like to have consistent results across iPad and iPhone 6 plus, which seams to be an issue. The immediate fix for this is to leave the images on the stage instead of using addChild. I could then just stretch the background image so that it spans the whole screen. But I want to add the items dynamically for greater flexibility.
    Here are two cases:
    Case #1:
    This an iPhone 6 plus and you should notice 2 things. 1) There is black and white on both sides. The blue background SHOULD APPEAR ACROSS THE WHOLE SCREEN. 2) The red button in the corner SHOULD APPEAR IN THE LEFT MOST CORNER OF THE
    SCREEN.
    Case #2:
    This an iPhone 6 plus and I have set the scale X, Y to the stage.stageWidth/Height:
    mc_stageBackground_Main.scaleX = stage.stageWidth;
    mc_stageBackground_Main.scaleY = stage.stageHeight;
    This results in a close up of the background image.
    Here is the code that I'm using:
    import com.greensock.TweenLite;
    import com.greensock.easing.*;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    //When this is active the background image spans across the device (iPhone 6 plus) correctly. The main logo image does not line up correctly.
    /*stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;*/
    var main_logo:MC_LOGO_MAIN = new MC_LOGO_MAIN();
    var mainBackground_2208: MC_MAIN_BACKGROUND_2208 = new MC_MAIN_BACKGROUND_2208();
    var mainBackground_1024: MC_BACKGROUND_1024 = new MC_BACKGROUND_1024();
    var mainCorner: MC_MAINCORNER = new MC_MAINCORNER();
    var chapters: MC_CHAPTERS = new MC_CHAPTERS();
    var _stageWidth = 1024;
    if (stage.stageWidth > _stageWidth)
        //Add bigger background if the stage is bigger than 1024
        mainBackground_2208.x = stage.stageWidth/2;
        mainBackground_2208.y = stage.stageHeight/2;
        addChild(mainBackground_2208);
        //Using this code results in a very close up view of the stage on iPhone 6 plus  
        /*mc_stageBackground_Main.scaleX = stage.stageWidth;
        mc_stageBackground_Main.scaleY = stage.stageHeight;*/
        //Adds corner to the main screen.
        mainCorner.y = stage.stageHeight;
        mainCorner.x = (stage.stageWidth - stage.stageWidth);
        addChild(mainCorner);
        TweenLite.from(mainCorner, 1,{ height: 0, width: 0, delay:1, ease:Elastic.easeOut});
        //add logo to sit at 50 pixels from the top of the stage
        /*main_logo.x = stage.stageWidth/2;
        main_logo.y = (stage.stageHeight -stage.stageHeight + main_logo.height *.6);
        addChild(main_logo);
        TweenLite.from(main_logo, 1,{ y: -main_logo.height, ease:Elastic.easeOut});*/
    else
        trace ("The stage is 1024 or smaller");
        //Add 1024 background if stage is 1024 or smaller
        mainBackground_1024.x = stage.stageWidth/2;
        mainBackground_1024.y = stage.stageHeight/2;
        addChild(mainBackground_1024);
        //Adds corner to the main screen.
        mainCorner.y = stage.stageHeight;
        mainCorner.x = (stage.stageWidth - stage.stageWidth);
        addChild (mainCorner);
        TweenLite.from(mainCorner, 1,{ height: 0, width: 0, delay:1, ease:Elastic.easeOut});
        //adds chapters
        chapters.x = (stage.stageWidth - stage.stageWidth)+75;
        chapters.y = stage.stageHeight - 120;
        addChild(chapters);
        TweenLite.from(chapters, 1,{ height: 0, delay:.5, ease:Elastic.easeOut});  
        //adds the Main logo to sit at 50 pixels from the top of the stage
        main_logo.x = stage.stageWidth/2;
        main_logo.y = (stage.stageHeight -stage.stageHeight + main_logo.height *.6);
        addChild(main_logo);
        TweenLite.from(main_logo, 1,{ y: -main_logo.height, ease:Elastic.easeOut});

    On all of the devices go to settings - facetime - iphone cellular calls - oFF, this part of Apple continuity.

  • Personal Hotspot not working between iPad Mini and iPhone 6 Plus

    The personal hotspot function between my iPad Mini and iPhone 5C worked perfectly.
    I am now using an iPhone 6 Plus with the same iPad Mini and cannot establish a connection at all.
    Bluetooth and Wifi are enabled on both devices and the iPad says it has found my phone, displays the signal strength, 4G, battery remaining and 2 linked circles.
    When I choose that hotspot it tries to connect then just keeps saying "Remote Hotspot Failure. Unable to start Personal Hotspot. Stuart's iPhone 6Plus"
    Please help!
    Stuart

    Are both compatible devices / carriers?
    iOS: System requirements for Personal Hotspot - Apple Support
    iOS: Troubleshooting Personal Hotspot - Apple Support

  • HT1386 How do I create one Apple ID and iTunes user name and password for all of my Apple products: iPad, iPhone, and iPod plus iTunes on my PC?

    How do I create one Apple ID and iTunes user name and password for all of my Apple products: iPad, iPhone, and iPod plus iTunes on my PC?

    Yes, I do have multiple devices and it appeared to me that every time I tried to sync or log onto iTunes, the password was incorrect.  Consequently, I was and am constantly changing it.  Wouldn't it be nice if Apple would simply say that you only need one Apple ID and one password regardless of the number of Apple devices you intend to sync via iTunes. 
    Barring the above, how about a way to merge all of the Apple IDs and passwords into one.

  • Intermittently iphone 6 and 6 plus is wifi connected but internet does not work.

    Hi,
    I have an issue where intermittently iphone 6 and 6 plus is wifi connected but internet does not work. iMessage works though.  Toggling the wifi setting clears
    the issue temporarily but it occurs again.  Running iOS 8.3 now.  This was the case on iOS 8.1 and 8.2 as well. 
    I have tried the typical troubleshooting steps (reboot/reset network settings/disabling location services for wifi/upgrade/etc)
    My router is an EA9200 router with 2.4 Ghz and 5 Ghz.  It is configured with all bands with the same name.
    All other devices in my house works perfectly fine and has no disconnects (ipad/macbook air/tv's/receivers)
    My thought is that iphone 6 cannot handle well the moving around between bands. 
    Any thoughts or suggestions would be greatly appreciated.
    Thanks,
    David

    Have you tried to reboot your router by turning off the power (you may have to unplug it from the power source), then waiting about 30 seconds, then turning it back on?  This seems to solve a lot of problems.

  • My iPhone was stolen in Asia and it's now in Germany. How do I get it back? All I have left is a serial number, apple ID and password, plus a police report. What do I do now? I really want my phone back. Can someone help me? Thank you, Bobi

    My iPhone was stolen in Asia and it's now in Germany. How do I get it back? All I have left is a serial number, apple ID and password, plus a police report. What do I do now? I really want my phone back. Can someone help me? Thank you, Bobi

    No one here can help you, nor can Apple or any carrier. If you know the location, contact the local police where it is located.

  • Call Forwarding Breaks with iOS 8.3 Update on iPhone 6 and iPhone 6 Plus with AT&T

    Ever since the iOS 8.3 Update, call forwarding is no longer working on my iPhone 6 Plus.  I have spent dozens of hours troubleshooting with both AT&T Advanced Business Technical Support as well as many hours with top technicians from Apple at my local Genius Bars.
    This is a critical bug for me as I used to use the call forwarding option multiple times a day, EVERY DAY, because when I am in certain business locations my mobile phone gets no reception and calls go right to voice mail.  I need to have them forwarded to the land line I'm located at. 
    APPLE, PLEASE HELP!!!
    I've done extensive testing, and this seems definitely to be related to Apple iOS 8.3, and it seems to be specific to the iPhone 6 and iPhone 6 Plus ONLY. 
    To illustrate the EXACT problem:
    A: Settings -> Phone -> Call Forwarding
    B. Call Forwarding - Turn on
    C. Enter Number and return to previous screen by touching the blue "Call Forwarding" to return to previous screen.
    D. Call forwarding button is "green" for a split second, then returns to previous OFF state and no forwarding number is displayed.  DOES NOT WORK.
    NOT AN AT&T PROBLEM.  IF SOMEONE IS EXPERIENCING THIS WITH OTHER CARRIERS PLEASE COMMENT HERE.
    Further validation this is isolated to iOS 8.3 on the iPhone 6 and 6 Plus ONLY and not the sim card from AT&T...
    Here are the latest steps I did with my AT&T sim card and my wife AT&T sim card (she has an iPhone 5s):
    1. Removed my sim and put it in the 5s. The phone said that a "carrier update" was required and I selected "NO" to that prompt.  Call forwarding functionality worked as expected on the 5s running iOS 8.3
    2. I removed the sim from the 5s and re-inserted it.  This time I selected "YES" to do the carrier update to eliminate that as a variable, and the call forwarding functionality still worked as expected.
    3. I then placed my wifes sim in my 6 Plus. Call forwarding functionality does NOT work on the 6 Plus (was not prompted for carrier update). Also, keep in mind this is my second phone (Apple provided me with a new iPhone 6 Plus when they couldn't resolve the problem at the Genius Bar after hours of troubleshooting).
    Note: I did one additional test which as interesting:  I put my sim in the 5s and turned call forwarding "on".  Then, I put the sim back into my 6 Plus.  The calls were still being forwarded to the number I put in while it was in the 5s, but the call forwarding interface in the 6 Plus showed that it was NOT forwarding calls.  I could not turn OFF the call forwarding from the 6 Plus and had to put the sim back into the 5s in order to turn off the call forwarding.
    If anyone has an update on this, or any other suggestions please advise!  This is a critical issue for me as when I travel and when I am in poor areas of reception I need to forward calls.  This is a featured I was using multiple times a day, EVERY DAY.
    APPLE?????????  HELP!!!!!!

    Yes, I am dealing with this right now on at&t with a 6 plus. I've been down the same road as you. I got it to work with a windows phone yesterday but not my 6 plus when I switched back to the iPhone. My wifes 6 works fine. I believe it is an at&t issue and not an 8.3 issue. After dealing through several levels of support at at&t, they are telling me it has to do with their transition to hd voice. Some people are having this issue because they are updating their system and some peoples phone profile, on phones that have hd voice capabilities, are not getting added to their line and call forwarding will not work without it. I have a trouble ticket open to their engineering dept and they promise it will work for me on or before the 24th of april. Engineering has to build my phones profile so call forwarding will work with my iPhone.
    This is frustrating because like you, I need to forward my calls because I have no signal in my office and need to forward to another phone so I can get my calls. If at&t would quit dragging their feet and enable wifi calling, this wouldn't be an issue for me. I would suggest you put more pressure on at&t and escalate this until it gets resolved. Or put your sim in a phone that does not have hd voice capability and see if it works then.
    Good luck. I'm keeping my fingers crossed this will be fixed for me on or before the 24th. We'll see.
    EDIT: I see you did put it in another phone and it worked. That backs up that the issue is at&t and their hd voice upgrades. They had no explanation as to why some work and some don't, but have them make sure a profile for your phone is on the line. If not, they'll need to build one for the phone so that it''l work. At least that's the story for now. Like I said, I'll know more in a day or two.

  • Genuine Leather case for iPhone 6 and iPhone 6 plus

    Hi, I'm looking for premium quality leather case for iPhone 6 and iPhone 6 plus. I don't want PU but genuine quality. Still would like not too expensive. All that I found so far are around hundred bucks. Could someone advice of brands for that category? Or personal experience ... Thanks

    Have a look at cableJive they make the dockStubz which might do what you are looking for

  • IPhone 6 and 6 plus conference calling

    Hello everyone, I'm waiting on my iPhone 6 plus from verizon to come in and I searched a bit for this answer but no one has clearly answered this. Now I know that the iPhone 6 and 6 plus has the advance 1.0 calling feature on it which we can now do HD calling and as well as 6 way calling but I just have a couple of questions.
    1. Is it truly 6 way calling just like AT&T where I can do this with landlines and other networks or is it only with other phones on verizon with voLTE?
    2. If I'm already on a call and a second incoming call comes in, am I able to merge that call to the existing line or I have to tell the caller to hang up and then I proceed to call everyone at once like all CDMA iPhones had done in the past for multiple calls?
    Sorry if this has already been answered as I tried searching but haven't had much luck. Thanks guys!

        Hey there, lilfool4lif3! Thanks for bringing your questions about conference calling to the Forum. I'm sorry that you've had any difficulty getting this straightened out. Although the iPhone 6 using iOS 8 can support conferencing with up to five other callers, this activity is not yet supported while using Advanced Calling. That said, the process if adding a caller while engaged in a call can be done by tapping the HOLD CALL   Answer, and then tapping MERGE CALLS. Thanks!
    DionM_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • I copied a jpg on icloud drive on my macbook pro. How do i view that jpg on my iphone 6 plus? Macbook Pro is on Yosemite and iphone on 8.1.

    I copied a jpg to the icloud drive on my macbook pro. How do i view that jpg on my iphone 6 plus? Macbook Pro is on Yosemite and iphone on 8.1.

    Hello Sunil Gubbi,
    Thanks for using Apple Support Communities.
    From your post I understand that you'd like to know on how to access your files on iCloud Drive.  Please take a look at the information below on how to access the files.
    You can access your files in iCloud Drive any of these ways:
     Using any supported web browser, you can go to iCloud Drive or iWork for iCloud beta at iCloud.com. In iWork for iCloud beta, you can find your Pages, Numbers, and Keynote files.
    On your Mac with OS X Yosemite, you can go to iCloud Drive in Finder.
    On your PC with Windows 7 or later and iCloud for Windows 4.0, you can go to iCloud Drive in File Explorer.
    On your iPhone, iPad, or iPod touch with iOS 8, you can access your files from Apple apps like Pages, Numbers, and Keynote, or any apps that support iCloud Drive.
    iCloud Drive FAQ
    Take care,
    Alex H.

  • I own iphone 6 plus and iphone 4s . I have created 2 Apple ids but I want to use both ids on 6 plus... And also on computer ... I m of 16 so I can't have family sharing also... But i want to keep both ids app on my computer as well as on iphone 6  ..

    I own iphone 6 plus and iphone 4s . I have created 2 Apple ids but I want to use both ids on 6 plus... And also on computer ... I m of 16 so I can't have family sharing also... But i want to keep both ids app on my computer as well as on iphone 6 ....

    There are a number of Apple services: iMessage, FaceTime, iCloud, Game center, Find My iPad, etc.
    Now, to share apps, music and books you need to have the same Apple ID:
    iPad's Settings > iTunes & App Stores > Apple ID > Your purchasing Apple ID.
    For the other service, your wife should have her own Apple ID.
    All she needs is a valid e-mail address, apply Apple ID below:
    https://appleid.apple.com
    Here's a limk with useful tips: Note: It's also valid in IOS 6
    iOS 5 & iCloud Tips: Sharing an Apple ID With Your Family

  • When will the iPhone 6 and 6 Plus be available in stores to view?

    To get an accurate idea of size, I would like to actually view the iPhones before pre-ordering.

    When and where to buy the iPhone 6 and iPhone 6 Plus - CNET

  • Apple stops support for iPhone 6 plus and iPhone 6

    It is unbelievable that Apple obviously stopped supporting iPhone 6 plus and iPhone 6!
    It can happen, that software bugs cause some problems. It might also happen that SW bugs cause a phone stop working. But what's inacceptable is what happened with iOS 8.0.1: The phone doesn't work anymore and Apple simply doesn't care! No official statement what to do. No official statement, when a solution is expected. No official way how to switch back to 8.0.0. Simply nothing. They simply don't care! And their hotline? Well: "We just heard about it this morning. There's nothing we can do about it. Just wait. But I don't know, when a fix will be provided. Maybe today, maybe tomorrow. We simply don't know." This was 12 hours after the bug was known!!! When I switched to Apple years back, the reason was exactly that I didn't want issues like that! But the worst thing really is that Apple simply doesn't care!

    When I go to desktop through check for an update while holding down my shift key the file which is on my desktop does not appear for me to select it?
    I have tried extracting the file and then I can see it but it just keeps opening the sub folders and nothing works?

Maybe you are looking for

  • Questions on the @ServiceClient annotation and Asynchronous webservices

    1. Is their a way to invoke a webservice in an asynchronous manner without using the @ServiceClient annotation? I've tried a few things to get access to the async versions of the web methods and each time I get an exception stating "java.rmi.RemoteEx

  • Business service is not working in sender side but business system is working soap to idoc but why like that

    i have  scenario SOAP to IDOC when i'm using business service in sender side it is getting an error as follows sender message can not convert to ALE Logical system in this i'm using altova spy as testing tool my sender interface is asynchronous but w

  • Error in MI application

    Hi all I am just running std first example that is given in help.sap.com but i got one error that given below plz give me answer ASAP Added com.sap.ip.me.core.ShutDownThread as a JVM ShutdownHook Initialize framework ...    Configuration initialized.

  • JSR169 SQL on pocket pc

    hello I have a problem, i'm trying to get sql work on my pocket pc but everytime i try to build my project, i get an error about "import java.sql.*;" I read that i have to implement an optional package jsr169, but there is the problem. I downloaded t

  • [OT] Contec =?ISO-8859-1?Q?cay=F3_y_ahora_tikka?=

    Para aquellos que os habeis visto sableados por Contec durante tanto tiempo y que visteis como se separaba en dos nuevas compañias tengo otra noticia. La nueva Tikka, una de las resultantes de la division, ahora tambien se va al garete!!