IOS 6 Custom Ringtones for 3rd party apps such as Talkatone

Will iOS 6 ever allow an app such as talkatone or google voice to allow custom ringtones? Does anyone know??
Since they upgraded from iOS 5 to 6 that feature is no longer available. It is quite a bummer. Please put it on again Apple!

You can't use custom ringtones for Talkatone.
Compatible with iPhone, iPod touch, and iPad. Requires iOS 4.3 or later. This app is optimized for iPhone 5.

Similar Messages

  • I am attempting to update students' iPads using the Apple Configurator software. However, information for 3rd party apps, like Notability and Explain Everything, is being lost.

    I am attempting to update students' iPads using the Apple Configurator software. However, information for 3rd party apps, like Notability and Explain Everything, is being lost.

    Mike,
    If by "still nothing" you mean they are not showing up in the AU manager after reinstalling them....
    Im guessing the AU Cache itself is now corrupted so.....
    Quit LPX
    Open Finder
    Press the option key and click "Go" in Finder's menu and select "Library". (This is the User Library and not the System Library and is normally hidden which is why you have to hold down the option key when clicking on Go.... to reveal it in the drop down menu that will appear)
    Go to "Caches" dir and remove "AudioUnitCache" dir.
    Now Restart your Mac.....
    and then Launch LPX and let it rescan your plugins and see if that fixes things....
    Fingers crossed...
    Nigel

  • How to enable iCloud Keychain for 3rd party apps?

    I came across iCloud Keychain, which if enabled, lets you backup keychain passwords and restore on other iOS devices. Also read that 3rd party apps can integerate iCloud Keychain to their apps in order to ensure that the app's keychain items are backed up to iCloud Keychain. Would like to know more on what 3rd party apps can do with iCloud keychain. 
    Even Appls's FAQ says so:
    Does iCloud Keychain work with third-party apps?  Yes. Developers can update their apps to work with iCloud Keychain. Passwords saved by those apps are then kept up to date on all devices that use the app and running iOS 7.0.3 or later or OS X Mavericks v10.9 or later.
    I couldn't really find implementation details. Please help.

    If the the data is stored in the backup, it should restore to the iPad when you restore the backup. If that's not happening, sometimes it's becuase the data is stored on the app's server.
    SInce you are not having any luck restoring the backup, I would do a Google search such as this one using thses parameters - without the quotes.
    "restore candy crush backup progress"
    Personally, I do not trust any game that has in app purchases like these games have. It is my paranoid belief that the game developers do not want you to be able to restore your progress.

  • Can't use system ringtone in 3rd party apps since OS upgrade

    Yesterday I upgraded the OS on my BB9900 to 7.1 Bundle 2061 (v7.1.0.714 Platform 5.1.0.532). I then had to completely reconfigure BeBuzz LED customiser (v 5.0.40 for OS 7.1) for specific contacts and apps. Before upgrading I had used 3Bells as a contact-specific alert for emails and text messages in BeBuzz. But since the upgrade it won’t let me us 3Bells. If I try, the following message appears:
    “The selected ringtone 3Bells is a system protected file and cannot be accessed by 3rd party apps. Please move a copy of the file to a different folder on your phone. This applies to all ringtones that came preinstalled on this phone”.
    This is very strange, as this restriction wasn’t there before upgrading the OS. My question is, how do I locate the folder where this ringtone file is?
    Q10 | Vodafone UK | London

    +"remove the "com.apple.systempreferences.plist" file...then re-open the system preferences..."+
    And remember to either log out and back in to the account or restart the computer to force the generation of a new prefs file.

  • Structured approach to debugging performance bottlenecks for 3rd Party apps

    Hi All,
    I am facing a situation which I believe most App Support personnel and DBAs in IT organizations do, but I havent found a structured approach to solve the problem. I am hoping this thread can help filter and pull together the varied chunks of information out there in one place.
    Here is the situation. I am avoiding making it too specific, as the idea is to identify a good approach that is repeatable in other scenarios.
    We are in the process of implementing a solution using a third party application (SAP's BPC), which is sitting on an Oracle database. The application implementation team has some control on to use the application to design the solution, but no direct access to the underlying queries that the app generates. We are starting to find that as the underlying database usage size is increasing (from a couple of million to tens of mllions of records), the performance of certain operations is becoming very unpredictable. Sometimes an operation would go through, relatively fast while at other times it would get stuck for over an hour and then time-out.
    In such situations it is a classic battle between the Oracle DBAs and the App implementation team to try and push the ball in each other's court to try and identify and "fix" the problem.
    What in your opinion would be a structured approach between the two teams to help solve the problem? For each step of the approach, please also try and see if you can point to links which further dive into specifics of executing that step.
    For example, one approach might be to ...
    1. DBA team to find a way to identify specific Querios/DBOperations that are taking too long. (add references here)
    2. App team to collaborate with the App manufacturer's support organization to see what design changes or parameters could alter the nature of queries being generated or affect the size of the underlying tables. (too specific for each 3rd party app)
    3. After exhausing (2), DBA team to analyze the remaining culprit queries and find ways to obtain better performance without changing the query or the size of the database tables via indexes/DB parameters/etc.. (add references here)
    4. After exhausing (3), DBA/Unix admin team to identify which specific hardware bottlenecks are being faced (CPUs/storage/memory) to see if hardware changes can help obtain better performance.
    Thoughts?

    >
    1. DBA team to find a way to identify specific Querios/DBOperations that are taking too long. (add references here)
    2. App team to collaborate with the App manufacturer's support organization to see what design changes or parameters could alter the nature of queries being generated or affect the size of the underlying tables. (too specific for each 3rd party app)
    3. After exhausing (2), DBA team to analyze the remaining culprit queries and find ways to obtain better performance without changing the query or the size of the database tables via indexes/DB parameters/etc.. (add references here)
    4. After exhausing (3), DBA/Unix admin team to identify which specific hardware bottlenecks are being faced (CPUs/storage/memory) to see if hardware changes can help obtain better performance.
    >
    In general your approach is correct.
    However I'd put priorities different way.
    1. DBA team to find a way to identify specific Querios/DBOperations that are taking too long. (add references here)
    2. DBA team to analyze the culprit queries and find ways to obtain better performance without changing the query or the size of the database tables via indexes/DB parameters/etc.. (add references here)
    With collaboration with the App manufacturer's support if required.
    Indexes are transparent to application logic. They do not affect results data. Only performance.
    Note that indexes should be regular b-tree indexes, not unique or bitmap.
    Edited by: user11181920 on Nov 7, 2012 3:20 PM
    Changes of queries can be allowed here, with using Oracle query substitution techniques (Plan Stability, Plan Management...).
    3. After exhausing (2), DBA/Unix admin team to identify which specific hardware bottlenecks are being faced (CPUs/storage/memory) to see if hardware changes can help obtain better performance.
    Not only because today to beef up HW is less expensive way to improve performance comparing to SW optimization, especially redesign of App; but mainly, in case with SAP, the poor performance that can be improved by HW tells that the sizing of the system has been done incorrectly.
    SAP has a methodology to size your HW depending on volume of data, number of users and quantity of transactions.
    Sizing should be re-done if your data grown beyond the volume that had been used for initial SAP sizing.
    4. After exhausting (3), App team to collaborate with the App manufacturer's support organization to see what design changes or parameters could alter the nature of queries being generated or affect the size of the underlying tables. (too specific for each 3rd party app)

  • "Software Update" for 3rd Party Apps?

    Hi,
    Does anyone know of an application that could act like Software Update for 3rd party programs, so that a list of updatable applications shows and you can select to download them all at once?
    I know some do an update check on launch, but I was just wondering if there was a more convenient way?
    Thanks,
    Ben

    Yes, but no. App Update is a widget that will check for updated versions of your apps. It can be found at http://www.apple.com/downloads/dashboard/status/appupdate.html. Unfortunately, it won't install them for you, but will give you links to websites where you can download the newest version. I use it and like it. Give it a try!

  • Possible fix for 3rd party apps crashing after 3.0

    If some or most of your 3rd party apps crash when launching them after upgrading to 3.0, I have a fix that cured my problem. Another symptom is that you can delete the App, then reinstall and it works until syncing with iTunes.
    Well my cure was to download any app, even a free one via iTunes, then sync with the iPhone. All was cured. I usually just download Apps straight from the iPhone, but the iTunes route worked.

    If some or most of your 3rd party apps crash when launching them after upgrading to 3.0, I have a fix that cured my problem. Another symptom is that you can delete the App, then reinstall and it works until syncing with iTunes.
    Well my cure was to download any app, even a free one via iTunes, then sync with the iPhone. All was cured. I usually just download Apps straight from the iPhone, but the iTunes route worked.

  • A Permanent Fix For 3rd party apps that don't launch?

    Since Apple has removed my post suggesting this is a bug (and if you've owned iPhones from the get go, you will know that this is). I'm putting a question out to the forum in hopes that besides the already mentioned deleting/updating an app via the store, uninstalling all apps (losing all the app data) and reinstalling et al, has anyone found a way to keep this from happening ever OR a way to back up the particular file that must store authorization data that gets corrupted?

    My experience is the same as w7ox for as long or longer. I've had a couple of apps that would occasionally crash on launch, but these were fixed in updates from the developer. One thing to be aware of is that all apps share the same memory, so if one is ill-behaved it can cause others that are perfectly innocent to crash on launch. So the likely situation is that you have one errant app. When an app crashes because a problem in a different app a reboot will fix it, sometimes only until the other app is run again.
    BTW, there are huge numbers of posts pointing to problems that are called bugs by the posters (and some actually are), so it's likely your post was deleted for a different reason than the fact that reported a bug.
    Message was edited by: Lawrence Finch

  • Hurry up and release SDK for 3rd party apps

    I love my ipod touch as I carry music podcasts and DVD videos.
    However it would be great to have more tools available, so it acts like a PDA.

    Can't rush perfection
    Yeah but really I would like an update that adds some apps (COUGHIPHONEAPPSCOUGH) wow I have a bad cold

  • Really Apple? OSX 10.8.5 disables built-in camera functionality with third party apps such as Skype and Gmail video chat. I do not have time machine on my 2013 MB Air. How can I get back to 10.8.4?

    Really Apple?
    With the release OSX 10.8.5 Apple has once again showed its true colors, and continued its efforts to create a closed Apple system, which eliminates third party vendors, unless, one can only assume... they pay.
    Included in this OSX update is the disabling of the built-in camera to work with third party applications such as Skype and Gmail video chat. No surprise the camera works just fine with Apple apps such as Facetime and Photobooth.
    The answer I got on my call to AppleCare to ask for assistance in reinstalling 10.8.4, so that I may Skype again, was we can not do that. You can not go back unless you have a time machine bkup.
    Can anyone help me get back to to 10.8.4 on my 2013 MB Air?
    I do not have a time machine bkup as this computer is not used to store important documents.
    Thank you.

    Read this post: 10.8.5 Broke Camera Usage For 3rd Party Apps Like Skype
    Another: isight not recognized in Skype after 10.8.5 upgrade
    Don't panic. Skype simply needs to update its app.

  • 3rd party app alerts no longer show up in the notification center

    I upgraded my iPhone 5 to iOS7 last week and ever since alerts for 3rd party apps (like gmail and others) haven't been showing up in the notification center.  I've checked my settings for both the notification center and for my individual apps to make sure they weren't reset, made sure my apps were up to date (not all of them have had updates since iOS7 was released but some definitely have), tried toggling them on and off and rebooting, but so far nothing has helped.  The banner alerts work, but nothing pops up in the notifications.  Has anyone else experienced this or have any other ideas how to fix it?
    I've generally been pretty pleased with the new version of iOS, but I'm hating everything about the changes made to the notification center.  Even if I do get my notifications to work again, I hate that we're forced to have that "Today" tab even if you switch the summaries off!  I like the unified page from iOS6 much better.

    Hi cyn999!
    I have an article that can help address this question:
    iOS: Understanding notifications
    http://support.apple.com/kb/HT3576
    As you can see in the screenshot, the weather does show up in the notification center, but it is in text form instead of icon form in iOS 7. Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • 2-step Verification in 3rd-party app

    I was considering developing certain apps for iOS and Android that would include the need to sign in to a user's Outlook.com account. Looking at the API, I could see that regular sign-in is supported using OAuth 2.0, but I could not find a statement verifying
    whether or not I could also somehow enable signing in with two-step verification (assuming that the user has that feature enabled in Outlook.com). Does anyone know conclusively whether it can be done in a 3rd party app?

    Only OAuth is supported for the Live Connect API/SDK.  With OAuth, the user still needs to provide consent for your app to access certain information on their account (which they can remove at any time).  I'm not sure if 2-step verification is
    supported for 3rd party apps.

  • Volume not working on 3rd party apps

    My volume works on ipod, facetime, itunes (all apple native apps) on my ipad 2, but not on any other 3rd party apps such as zombies, angry birds and time/warner tv apps.  I have checked volume both within apps and in settings.

    Hi Sachin
    Thanks for getting back to me
    here's a link to the 3rd party hosted site that shows the problem
    http://www.cccuk.com/cccmuse/
    and here's a link to the same muse site on BC
    http://cccuk.businesscatalyst.com/index.html
    which works ok, unfortunately this site is going to have to be hosted on the 3rd party host, if I can't get it to work I'll have to go back to dreamweaver which would be a shame.
    Cheers

  • Should 3rd party app installed from app store has admin or wheel in info box?

    I installed a free program from the app store called Kitabu (an epub reader). Click on the info & it said wheel. I thought only programs came with the mac by default will have wheel and all other programs (ex: iWork, microsolf office) will have admin instead--which they do, I checked. Is this normal for 3rd party app to have wheel group?
    Also the quick look plugin in this program (kitabu) works fine when I 1st installed it (quick look & preview function can view page cover of epub books). Then it stopped working. Is it the program fault or my mac?

    CrownPixel wrote:
    Also the quick look plugin in this program (kitabu) works fine when I 1st installed it (quick look & preview function can view page cover of epub books). Then it stopped working. Is it the program fault or my mac?
    Either or.
    Trash the program's plist file which is located inside /Library/Preferences.  Repair permissions, restart your computer and empty the trash.

  • IOS 4- App Store and 3rd Party Apps don't load

    So I didn't have any problems with upgrading to iOS 4. The problems started when I tried to play with my apps such as Facebook and other games. They seem to stay in loading and nothing happens. I have turned of my phone multiple times and nothing seems to work. The App store also stays in a loading stage and nothing appears.
    Is anyone having similar problems or know of any solutions?

    OK. Here's the solution that worked for me. See my prior post on 22 June for background info.
    After loading new apps and deleting and reloading existing apps to my iPhone via iTunes on my computer, the iPhone still would not run 3rd party apps. So I decided to start from scratch.
    PROCEDURE:
    1) Back up the iPhone.
    2) Click the restore button to take the iPhone back bare bones iOS 4 operation. It is not necessary to download iOS 4 again. Do NOT restore from back-up as control of the process to the greatest extent possible is the goal.
    3) Once the restore is complete, allow iTunes to configure the iPhone from the back-up.
    4) Check some or all 3rd party apps to verify function.
    5) Power down iPhone and restart it. Check some or all 3rd party apps to verify function again.
    6)Load music and video (I manage mine manually)
    This worked for me. Hope it works for you too.
    I am most certainly not an expert. I just decided to try an approach I thought the Apple Genius's might suggest.
    Good luck!

Maybe you are looking for

  • CS4 won't stay open for more than a second on OSX 10.6.8 SL

    I am stuck without photoshop and need some help. I know this is an old issue but I haven't been able to find an answer yet. I have a MacBook Pro with Intel and OSX 10.6.8 (Snow Leopard), which I just upgraded to from Tiger. Everything else works, exc

  • Calendar sync version 1.1.4 w/ Itunes 7.7

    I upgraded to the new iTunes but have not upgraded my iPhone to version 2.0. I keep getting an error when syncing my calendar to Outlook that says "cannot sync calendar iTunes encountered an error when merging records". It gives me no opportunity to

  • Video not appearing in Analytics

    We are using Enterprise for a new client and we have embedded a video in some folios (and hope to have multiple videos in folios in the future). However it does not appear in the Analytics under the Video content. Articles and ads appear perfectly. I

  • Can i keep my unlimited if....

    hi so im thinking about getting a Galaxy Note 2. i got the money to pay full price but id rather try to get it cheaper. i have a family plan. 2 lines with unlimited data and 2 with tiered data. would one of the following be possible to keep my unlimi

  • E72 Cant send email

    i setup up an other email account on my E72 its pushing in my emails from my vodamail.co.za account but i'm unable to send emails they bounce back