Third party apps with Apple notes?

Are there any third party apps that can sync with Apple Notes?

It's a pretty closed off app. Take a look at SimpleNote and Evernote if you want apps that you can use across more devices. It may be a bit more than you're looking for but I think Drafts is amazing.

Similar Messages

  • Provisioning on third party apps with java handlers

    Hello,
    I am trying to configure OID to enable provisioning against third party applications like an J2EE app who use MySQL )
    I want to develop a Java plugin for handling events on OID and propagate on other DBMS.
    I saw on the following page (http://download-uk.oracle.com/docs/cd/B14099_14/idmanage.1012/b14087/prov_plug.htm#BCGJFHEB
    ) a sample of Java code who could help me. The, I tried to apply the Grocery demo with a JAVA plugin but unsuccessfully.
    Thats my configuration issues:
    1 ) In oidadmin
    I have created the following entries:
    cn=ApplicationsCCIP,cn=Products,cn=OracleContext
    cn=Plugins,cn=Training,cn=Applications,cn=Provisioning,cn=Directory Integration Platform,cn=Products,cn=OracleContext
    2) With ldapmodify
    dn: cn=Plugins, cn=Training, cn=Applications, cn=Provisioning,cn=Directory Integration Platform,cn=Products,cn=OracleContext
    changetype: add
    add: orclODIPPluginExecData
    orclODIPPluginExecData: path to jar addressbook-oidplugin-2.1.1.jar
    objectclass:orclODIPPluginContainer
    dn: cn=PRE_DATA_ENTRY_CREATE, cn=Plugins, cn=Training, cn=Applications,cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext cn=Provisioning
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PreDataPlugin
    orclODIPPluginAddInfo: Pre Data Entry Plugin for CREATE operation
    dn: cn=PRE_DATA_ENTRY_MODIFY, cn=Plugins, cn=Training, cn=Applications,cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PreDataPlugin
    orclODIPPluginAddInfo: Pre Data Entry Plugin for MODIFY operation
    dn: cn=POST_DATA_ENTRY_CREATE, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PostDataPlugin
    orclODIPPluginAddInfo: Post Data Entry Plugin for CREATE and modify operations
    dn: cn=POST_DATA_ENTRY_MODIFY, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.PostDataPlugin
    orclODIPPluginAddInfo: Post Data Entry Plugin for MODIFY and CREATE operation
    dn: cn=DATA_ACCESS, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DataAccessPlugin
    orclODIPPluginAddInfo: Data Access Plugin
    dn: cn=EVENT_DELIVERY_OUT, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DeliveryOutEvent
    orclODIPPluginAddInfo: Event Delivery Plugin for Outbound
    dn: cn=EVENT_DELIVERY_IN, cn=Plugins, cn=Training, cn=Applications, cn=Provisioning, cn=Directory Integration Platform, cn=Products, cn=OracleContext
    changetype: add
    objectClass: orclODIPPlugin
    orclStatus: ENABLE
    orclODIPPluginExecName: fr.ccip.training.addressbook.oid.DeliveryInEvent
    orclODIPPluginAddInfo: Event Delivery Plugin for Inbound
    3) I have uploaded the jar in /oas/infra/ldap/jlib
    4 ) With oidprovisioning tool
    oidprovtool operation=create ldap_host=dev-orainfra.ccip.fr ldap_port=389 ldap_user_dn="cn=orcladmin" ldap_user_password=password1 organisation_dn=ccip application_dn="orclapplicationcommonname=Training,cn=ApplicationsCCIP,cn=Products,cn=OracleContext" organization_dn="dc=ccip,dc=fr" event_subscription="USER:ccip:ADD(uname)" event_subscription="USER:ccip:DELETE" event_subscription="GROUP:ccip:MODIFY(cn,uniquemember)" interface_type=JAVA interface_name=PORTAL.WWSEC_OID_SYNC interface_version=3.0 application_type=Addressbook profile_debug=debug
    5) Restart OID
    I have previously uploaded a jar with some plugins
    Thas my code
    import java.io.FileOutputStream;
    import java.io.PrintStream;
    import oracle.idm.provisioning.event.Event;
    import oracle.idm.provisioning.event.EventStatus;
    import oracle.idm.provisioning.plugin.EventDeliveryException;
    import oracle.idm.provisioning.plugin.EventPluginInitException;
    import oracle.idm.provisioning.plugin.IEventsFromOID;
    import oracle.idm.provisioning.plugin.PluginException;
    import oracle.ldap.util.UtilDebug;
    public class OIDToAddressbookEvent implements IEventsFromOID {
    static {
    try {
    UtilDebug.setPrintStream(new PrintStream(new FileOutputStream("/tmp/oidtoaddressbookevent.log")));
    UtilDebug.setDebugMode(UtilDebug.MODE_ALL);
    } catch (Exception e) {
    e.printStackTrace();
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventsFromOID#initialize(java.lang.Object)
    public void initialize(Object _arg0) throws EventPluginInitException {
    // TODO Auto-generated method stub
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventsFromOID#sendEventsToApp(oracle.idm.provisioning.event.Event[])
    public EventStatus[] sendEventsToApp(Event[] _arg0) throws EventDeliveryException {
    UtilDebug.log(UtilDebug.MODE_ALL, "sendEvents", _arg0);
    EventStatus[] events = new EventStatus[1];
    events[0] = new EventStatus(EventStatus.SUCCESS, null, null, null);
    return events;
    * (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IEventPlugin#terminate(java.lang.Object)
    public void terminate(Object _arg0) throws PluginException {
    // TODO Auto-generated method stub
    public OIDToAddressbookEvent() {
    super();
    // TODO Auto-generated constructor stub
    public class DataAccessPlugin implements IDataAccessPlugin{
    static {
    try {
    UtilDebug.setPrintStream(new PrintStream(new FileOutputStream("/tmp/dataaccessplugin.log")));
    UtilDebug.setDebugMode(UtilDebug.MODE_ALL);
    } catch (Exception e) {
    e.printStackTrace();
    /* (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IDataAccessPlugin#getAppUserData(oracle.idm.provisioning.plugin.ApplicationContext, oracle.idm.user.IdmUser, java.lang.String[])
    public PropertySet getAppUserData(ApplicationContext arg0, IdmUser arg1, String[] _arg2) throws PluginException {
    return null;
    /* (non-Javadoc)
    * @see oracle.idm.provisioning.plugin.IDataAccessPlugin#process(oracle.idm.provisioning.plugin.ApplicationContext, oracle.idm.user.IdmUser, oracle.ldap.util.ModPropertySet, oracle.ldap.util.ModPropertySet)
    public PluginStatus process(ApplicationContext arg0, IdmUser arg1, ModPropertySet arg2, ModPropertySet arg3) throws PluginException {
    UtilDebug.log(UtilDebug.MODE_ALL,"Processing DAP...",_arg0);
    return new PluginStatus(PluginStatus.SUCCESS,null,null);
    I have already develop event wich implements IEventsPlugin.
    I dont see what s wrong in my configuration
    Thanks in advance for your help
    Alexandre Touret
    Message was edited by:
    [email protected]
    Message was edited by:
    [email protected]

    Ahhh...OK...that makes more sense now. From your first post, it seemed like you wanted to sync the actual app (as in, for instance, backup the actual app and then restore it after an OS reload...as opposed to reinstalling the app after an OS reload). But, now I see that it is the App data that you wish to sync.
    To be 100% clear -- is this a sync function, similar to how the desktop software synchs with your PIM (e.g., Outlook) for organizer data? Or is this a backup function, where the data is backed up for use in a subsequent restore?
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Cannot Sync third party apps with DTM 6.0

    I just downloaded and installed DTM v6.0 and cannot find the area in which to set up third party (Add-ON) software for synchronization. Did they forget about this? Please help. Thanks

    Ahhh...OK...that makes more sense now. From your first post, it seemed like you wanted to sync the actual app (as in, for instance, backup the actual app and then restore it after an OS reload...as opposed to reinstalling the app after an OS reload). But, now I see that it is the App data that you wish to sync.
    To be 100% clear -- is this a sync function, similar to how the desktop software synchs with your PIM (e.g., Outlook) for organizer data? Or is this a backup function, where the data is backed up for use in a subsequent restore?
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HT201250 Third Party Apps With Time Machine Backup

    My Retina MBP screen is ghosting so they might have to replace the whole computer. Will a Time Machine restore re-add my third party applications like Star Craft and Adobe Photoshop? or will I need to hunt down the discs and reinstall them manually

    Time Machine backups the whole drive, so you don't have to reinstall the applications after you restore the backup, but you will probably need to insert a product key again

  • Cisco support for third-party apps on SRE?

    Hi - I am thinking about running some third-party unified communications apps under VMWare ESXi5 on a Cisco SRE 900 module.   According to the Cisco docs, third-party apps are supported on these modules (see table below) but the app in question is NOT on Cisco's list below.  
    http://www.cisco.com/en/US/prod/collateral/modules/ps10598/data_sheet_c78-553913.html
    Some questions:
    1.  As long as the third-party app is capable of running under VMWare/VSphere ESXi5, is there anything on the SRE that would prevent you from running this third-party app even though it's not on Cisco's list?
    2.  What is Cisco's policy on the use of third-party apps that are not on their list?    For example, will they take a support call on the SRE running a non-listed app (I am not expecting them to help me with the app but I don't want to void any sort of support contract through the use of a third-party app not on their list).
    Thanks !

    As long as 3rd party app is capable of running on ESXi 5 it would run on SRE hardware. Cisco doesn't prevent these apps from running even if they are competitive. From a support perspective Cisco TAC will not take any support calls for these applications nor would know how to redirect the call to these 3rd party partners. Cisco TAC will only support SRE and ESXi related issues.

  • I purchased my iMac using the same (and only) Apple ID I use to purchase apps. Third-party apps update fine, but the apps that came with my iMac (iPhoto, iMovie, etc) bring up a message saying I have to log in with the account I used to purchase them.

    I used my only Apple ID to purchase my iMac (Intel-based one).  I've never been able to update core apps that came with it.  I can update third party apps I've bought (like Coda), but when I try to update Garage Band, iPhoto, iMovie and so on, a popup message appears saying "You have updates available for other accounts" and "Log in with the account you used to purchase this app in order to update it", or similar (see screenshot above).
    The OS seems to get its updates fine - it's just the core apps from the App Store.
    I've only ever had one Apple ID, so I have no idea what to do.  I went to ask the Genius bar at my local Apple store, and they couldn't help, and insisted that I must have purchased the iMac using a different account, but I definitely didn't.  There are a few posts on non-Apple forums of this happening to other people, so it must be a rare bug.
    I'm a little concerned it may affect my ability to update from Lion to Mountian Lion.  Can anyone help?
    Dan

    Have you done a Disk Repair and a Disk Permissions Repair?
    If that doesn't resolve the problem I would suggest calling customer support about this issue as it is most likely on their (Apple's) end that the problem exists. 

  • HT4623 How to stop third party apps download with out you permission from ATT partners that cant see any connections on your account due to you not being the prchaser?

    How to stop third party apps download with out you permission from ATT partners that cant see any connections on your account due to you not being the purchaser or on account as long as someone else is paying they can not hold legal resposible there third privacy  due to legal privacy laws.

    Then you should read these.
    http://forums.macrumors.com/showthread.php?t=1804704&highlight=sonnet+tempo+pro
    http://forums.macrumors.com/showthread.php?t=1721573&highlight=sonnet+tempo+pro
    This was strange but has to do with how startup disk and nvram interact
    http://forums.macrumors.com/showthread.php?t=1795765
    I think your problems were solvable and not that the Sonnet card and 5,1 is not bootable, in fact the 5,1 is easier, there are more supported cards.
    I have the 1,1 where the Sonnet Pro is recommended but for data only and are not bootable because of the 32-bit EFI firmware. NOT the 4,1 and 5,1. The 2008's are problem child and have a mix of PCIe 1.1 slots, first implementation of EFI64 that also has problems. Also the 4,1 has two PCIe 2.x slots 3 and 4 that share a controller but that simply limits bandwidth.
    I would have left the TRIM support and NVRAM changes in Yosemite to a separate thread if you wanted to focus on the Sonnet Tempo Pro support in Mac Pro 2010-12 5,1s.
    Also the make of SSD can vary and they also have their own firmware as do bootable controllers along with the EFI of the Mac, all of which have to work together.  Meaning it might be that Samsung 840 va 840 EVO vs 840 Pro will all be slightly different but my experience is Samsungs work well (as do others like Crucial with the proper firmware - and there was/is an issue with the firmware of the Samsung 840 but not with booting).
    The PCIe card gets seen and treated as external and therefore 'eject' but of course you can't when it is the system boot drive.
    One thing I found last week and meant to mention:  After installing or changing PCIe cards, RESET SMC made all the difference in the world with the long boot delay. Some PCIe cards will add a few seconds, system has to search the device tree which now shows another controller with multiple devices - and sometimes NVRAM and SMC are what I will call "dirty" and need to be rebuilt and reset.

  • Will Apple Pages support a third-party font that is not compatible with Microsoft Word?

    Will Apple Pages support a third-party font that is not compatible with Microsoft Word?  I do not want to purchase Pages unless I can use it for this one very specific purpose.  How can I determine the correct answer before purchase?
    Many thanks for any guidance you can offer.

    Hmmm ... I see the font in my Font Book and in Suitcase Fusion, but it doesn't appear on the list of fonts in either Word for Mac or Text Edit, no matter what I tried.  I attempted quitting all applications, cleaning the cache using Suitcase Fusion, and rebooting the computer, but no dice.
    You think this is an installation or configuration problem my local Apple store could help fix ... not an underlying incompatibility?  If so, I will take it in.
    Please know I sincerely appreciate the help.  I'm at my rope's end on a project this evening and truly grateful for the reinforcement.  Thank you.

  • Notes on third-party apps closing (not really crashing) after a restore

    Hello,
    I'm adding the umpteenth message about a problem that, after happening basically with each single iPhone change since my old iPhone 3G onwards, I would say it's pretty common.
    I have solved this problem recently with a third sequence of actions, so I'm posting my brief "history of restores" for the benefit of others. I hope I've tagged this post eloquently enough to make it easy to find.
    So, in most (if not all) cases of previous restores I've bumped in the classic issue where after the restore process (which, BTW, involves always a few more sudden phone restarts than expected) only the "native" iPhone apps run normally. All the others appear for an instant and then close. They don't really crash because both in iOS 6 and iOS 7 you can see them as "running" by double-tapping the iPhone front button. Moreover, those with active notifications will actually notify the user regularly. Their UI, though, doesn't go past the splash screen.
    The underlying cause, also considering it relates only to apps downloaded via App Store, is presumably some DRM-related information that gets messed up during the restore process.
    My personal experience included previously two distinct solutions, and each of those only worked in that occasion, i.e. has been useless in the other cases:
    The oldest, and still most documented solution, was just to download, via iPhone, a new app from the app store. After a restart, or maybe even without one, the new app and all the others started working.
    The second, less mentioned online but still pretty widespread, was to sign out from the Apple Store on the iPhone, and then sign back in.
    This time, where I got a replacement for my iPhone 4s because of the common problem of the Wi-Fi/Bluetooth chip getting "burned" or dislodged, I tried both the solutions above but they didn't work. In the process, I've found other possible solutions that didn't work:
    Deauthorizing iTunes on the Mac and then reauthorizing it.
    Getting a new app via iTunes and then syncing the iPhone
    Sign out/in with iCloud on the iPhone.
    I was therefore close to abandoning my 877 apps already configured and organized in folders in the previous backups, and willing to accept the burden of setting up the iPhone as a new phone.
    Nevertheless, I still hoped that a "mixed approach" would work and, indeed, it worked.
    Here is the sequence that worked in my latest case:
    Restore the iPhone as a new phone
    Open the App Store on the iPhone and get a new app, not among those already downloaded previously
    Open that app and see that it works (actually, after an iPhone replacement steps 1-3 would make sense anyway to check that the phone works properly)
    Start a restore from a previous backup
    As soon as the apps start syncing again, open the first app already sync'd and check that it works. It should work, that's what happened to me, and so you can wait the whole time required to sync back all the apps.
    My experience involves also a falsification of the statement that the problem resides on individual backups. This is false because I've used the same backup, at step 4, that I selected before going through 1-3 and that was not working initially. Moreover, after step 5, I've realized that the old backup I had used was too old because yesterday evening, while I had my iPhone still misbehaving with third-party apps, I took a few pictures that would have gone lost using the old backup. I have then started again from step 4 with a backup from the night after the pics, when I was fiddling to fix my issues. Also the newer backup, clearly done while the apps where "bad", ended with all my apps working again.
    Basically, once the "physical" phone runs third-party apps, than any backup would work. The (missing) authorization portion that causes the misbehaviour might be related to the phone IMEI, or some other piece of information that is not included in backups.
    Does anyone know a specific thread here or blog post on some website where there is a collection of cases like mine?
    I'm not looking forward to seeing what voodoo variation will be required the next time I replace my iPhone...
    Hope this helps.
    All the best,
    Giovanni

    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.

  • Did latest iPhone update and now non of my third party apps work.  They open then close immediately.   I tried to restore but can't as my iphone wont sync with itunes now and I will loose my apps.  Also my largest app "Sat Nav" has gone.  Help ??

    Hi All
    I have run into problems with my iPhone 4.  I hadn't done an update for a while so decided to get my itunes and iphone 4 up to date.  I downloaded all the latest versions.  However now non of my third party apps work and my largest one has vanished.  I try and open them and they flash up and then close again. I thought the easiest thing to do was to restore so I tried to syn my apps onto itunes so I wouldn't loose them.  However it won't let me sync the apps onto iTunes.  It ill allow me to syn the old version when I just started but since then I have bought a dozen other apps.  Can anyone help.  thanks

    Well this won't work for me...
    I had all of my apps and music stored in iTunes, I updated to the newest 9.2 iTunes and did a 4.0 update to my iPhone 3G all the while not noticing that EVERYTHING IN iTUNES was GONE. When I got done updating my iPhone it was late so i went to bed... Next day came back to sync everything and thats when I saw it was all gone...
    http://support.apple.com/kb/HT1451
    did what the link said and NOW I have all my 6K+ MUSIC back but not ONE APP. The App's are completely gone from when you nav. to the location the link says... There isn't a mobile sync folder there...
    NOT SURE WHAT TO DO NEXT... Very Frustrated and MAD. I don't want to redownload all my apps manually. TO many to do it that way.

  • Share calendar with third party apps

    Hello,
    i have just set up the calendar server. It works well will the mac's calendar app and iOS clients.
    I also managed to import the CalDAV calendars into thunderbird with lightning extensions for the non-mac clients.
    I can send invites to specific appointment and check availability of people so far.
    What does not work is sharing a calendar. As delegate of a calendar is sent invites to some users. The web frontend is pretty much functional but i do not see the calendar invites. I expected them to appear in the notifications area where appointment invites are also shown.
    How can i share complete calendars with users that do not have access to apple software?
    Regards

    If the developers of those apps have incorporated support for iCloud into their apps, then yes.
    Contact the developers of the third-party apps and ask.

  • IPad photo issues with third party apps

    Up until recently I've had no problem with the issue I'm about to describe.
    When I download my raw format photos from my camera using the SD card reader I cannot view full photos in any third party apps such as the Photoshop app or any other I've tried. I just get a small thumbnail version, very low res. I can view them fine in the iPad photos app. If I sync my iPad with my computer and put the photos back into the iPad with iTunes they work fine with all my third party photo apps. Any suggestions?

    This appears to be a problem that cropped up with iOS 4. Prior to iOS 4, when a third party app would allow a user to browse to a RAW photo, the app would get a jpeg representation that was generally of high resolution.
    As of iOS 4, when third party apps get an image from these RAW images through the Photo Library the image that is retuned is of a very low (thumbnail) resolution. In our testing this appears to be limited to RAW images from Nikon cameras. When you sync your iPad the RAW photos are processed and then resync'd as jpegs on your iPad. You'll find these photos will now show up at the expected resolution once they go through the syncing process.
    We reported the bug to Apple and have not had any luck in getting any assistance for a work around through Developer Technical Support. They have explained that the iOS always grabs the jpeg preview from a RAW photo's data. Presumably if the particular RAW format does not include a jpeg preview you'd get nothing, but we do not have the data to indicate if there are any formats out there that don't store a jpeg preview as well as the RAW data.
    You will find that a couple of third party apps have found some work-around to the issue. To date our only idea has been to access the RAW image directly and parse it for the jpeg preview ourselves. We are hoping the issue is resolved in the next version of the iOS, but don't have any information yet to indicate that it will or will not be.
    Good Luck!

  • Screen Resolution issue with most third party Apps

    I have noticed that the screen resolution on my new iPhone 6 is not the same across the apps. For example when I open Facebook, the fonts seems to be like a little blurred and the background appears blurred. I am sure the third party apps need to work with the new iPhone to get it fixed. But just wanted to make sure that there is no need to do anything at this point. These apps are making the new iPhone screen resolution look sub-standard which is in no way Apple's fault. These Apps need to grow up faster and release updated versions before the users start cursing them for lagging behind lol..
    On the other hand the Apps designed by Apple work perfectly fine!
    The new iPhone 6 is beautiful! Thank you Apple! I love you.

    I can't help with the problem, since I don't have a laptop or second monitor, but if you want to report this to Apple, send a bug report (or enhancement request) via its Bug Reporter system. Join the Apple Developer Connection (ADC)—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report/enhancement request. You'll get a get a Bug ID number; thus, starting a dialog directly with engineering.

  • Third party apps not working

    so looks like my friends that have updated to 3.1.3 are having issues with launching their third party apps is there a way to fix this, i also have one but waiting on to see if apple can clarify if there is a problem before i update mine.

    The issue is actually not related to the 3.1.3 update.
    The issue occurs because the iPod or iPhone is unable to properly authenticate that you are the proper owner of the application. The apps are launched, the device checks who purchased the app, then checks if it has been authorized to continue. At some point in the process a mismatch occurs and the app quits. The easiest way of determining if this is your specific issue is to launch a native app (Phone, iCal, Contacts, etc) and verify that it launches, then launch a downloaded app (Skype, AIM, Facebook, etc) and verify that it quits shortly after launching.
    Two possible ways of resolving the issue:
    1) Trying to keep most application data, sync iPod/iPhone, deauthorize computer and sync again, reauthorize computer, and sync again. You may lose music on the iPod/iPhone until the final sync. Make sure it's all on your computer beforehand.
    If that doesn't work,
    2) Deauthorize computer, restore iPod/iPhone, authorize computer, set iPhone up as new device, then sync. This is the cleanest (and in my opinion the best) method but will also not preserve all application data (WIFI passwords, voicemail password, certain saved data within applications, SMS, etc).
    To deauthorize and reauthorize your computer account, load iTunes and select the "Store" menu item.
    Hope this helps,
    Brian
    Message was edited by: bhusar

  • No sound when playing music through dock with third party apps

    Hello,
    When I try to play music on my Iphone (3G, OS 3) through dock connected external speaker devices (like the B&W Zeppelin) using third party apps, i get no sound at all. Example of external third party apps are : wifi radios, alarm-clock programs, video viewers,...
    So i get no sound at all through the dock connector using that kind of apps. Sound is ok only with Ipod, Itune (or other apple apps).
    Has anyone encountered similar problems ? Any solution would be very much appreciated.
    Thanks.

    I have done that from the first day (contacting the makers of 3rd party apps)- They say they use standard components provided by Apple. So I would like to know if anybody has succeded in listening, for example, any internet radio app though a dock station connection (zeppelin, or whatever speaker system that is not using the jack), or is this functionnaly actually blocked by Apple.
    Thanks for your answers.

Maybe you are looking for

  • Goods Reciept PO and AP Invoice Contain Different Balance Due Totals.

    The scenario is that if we create a Goods Receipt PO for 06/07/2010 and then the next day (07/07/2010)  copy to a AP Invoice the Totals and Balance Due are the same BUT if we then change the posting date back a day u2013 to the same date as the origi

  • Moving a BT Infinity phone line

    I have a Home Hub 5 with a BT Infinity line and the line enters the house on the ground floor at the main socket, where the router is currently located. Having just had building work done I want to move the socket upstairs but am not sure if the Home

  • MacBook Pro to iMac--Extended Desktop

    I work primarily on my MacBook Pro. I have an iMac (24" display-2.4GHz Intel Core 2 Duo) at work that I would like to connect to the MacBook Pro to create an extended desktop b/n the two. Just to be sure, I'd like to know what adaptors/connectors I n

  • Acrobat Pro XI 11.0.7 update will not install - error 1603

    This is on Windows7 64-bit PCs running Acrobat Pro XI 11.0.0, 11.0.3, 11.0.4, or 11.0.6, we have 7 machines in this state. Have uninstalled, have used Acrobat uninstall tool in safe moved to remove old app. 11.0.0 will reinstall but 11.0.7 update wil

  • Idvd encoding error

    I purchased ilife'11 in order to get idvd. And I'm having encoding errors when trying to burn dvds. After trying just about everything suggested, I noticed that when idvd is opened I do not have use of the rop down menu. Don't seem to be supported..u