Is there any direct support for CC? I have been navigating the site trying to find someone to contact by email or phone.

I'm not sure I want a subscription if I can't get an answer to questions I may have. Not all issues are covered in the Q & As and forums.

If you have a question you can try asking it here and see if someone has the answer.  If you want to contact Adobe Support directly then you can use chat or phone to contact someone during the hours when those options are available.  I don't think anyone is available during the weekend.
For contact information... Start Here  If after selecting relevant responses you are unable to find a solution, choose "Still need help? Contact us." and the chat contact option.

Similar Messages

  • Is there any commercial support for LCCS services? What are the associated SLAs

    Hi,
    Following are some queries regarding LCCS.
    Is there any commercial support for LCCS services? What are the associated SLAs of the support and the cost?
    Can I Using applications developed using LCCS for commercial purpose?
    Does Adobe allows its LCCS service customers to offer applications developed using LCCS API for 3rd party commercial usage.
    Thanks & Regards
    Amit

    Hi,
    We were selling LCCS to enterprise customer under a different licensing program, but have since stopped the sale of that.
    You should check out this thread - http://forums.adobe.com/message/4110049#4110049 for a discussion on this.
    Jeff

  • Is there any planned support for the "do not back up" extended attribute for iOS

    Starting in iOS 5.0.1, Apple has introduced a new "do not back up" extended file attribute that will allow an app to store downloaded data into the application folder.  Is there any planned support for setting this attribute within an AIR application or is there currently a way to set this attribute using the existing AIR SDK.

    Yes, this is exactly what I'm wondering too. Without it, we can't build any apps that download content without the risk of the content being deleted.
    Here's the background before Apple introduced the new "do not back up" attribute:
    http://www.marco.org/2011/10/13/ios5-caches-cleaning
    Fortunately, Apple addressed it after that blog post in 5.0.1. See bullet #4 here, quoted below
    https://developer.apple.com/icloud/documentation/data-storage/
    Q:  My app has a number of files that need to be stored on the device permanently for my app to function properly offline. However, those files do not contain user data and don't need to be backed up. How should I store those files in iOS 5?
    A: Starting in iOS 5.0.1 a new "do not back up" file attribute has been introduced allowing developers to clearly specify which files should be backed up, which files are local caches only and subject to purge, and which files should not be backed up but should also not be purged. In addition, setting this attribute on a folder will prevent the folder and all of its contents from being backed up.
    Important: The new "do not back up" attribute will only be used by iOS 5.0.1 or later. On iOS 5.0 and earlier, applications will need to store their data in <Application_Home>/Library/Caches to avoid having it backed up. Since this attribute is ignored on older systems, you will need to insure your app complies with the iOS Data Storage Guidelines on all versions of iOS that your application supports.
    Now we just need Adobe to support the attribute in the AIR SDK. What do you say Adobe?

  • Is there any Java support for RFC 3229?

    Hi,
    RFC 3229 appears to be the modern form of HTTP DRP. Is there any Java support for this at all? Are there any Java HTTP servers, HTTP client libraries that support it?
    Thanks,
    Curt
    RFC 3229 Delta encoding in HTTP
    http://www.ietf.org/rfc/rfc3229.txt
    The HTTP Distribution and Replication Protocol
    http://www.w3.org/TR/NOTE-drp-19970825

    Hi,
    We were selling LCCS to enterprise customer under a different licensing program, but have since stopped the sale of that.
    You should check out this thread - http://forums.adobe.com/message/4110049#4110049 for a discussion on this.
    Jeff

  • I have upgraded my iPhone 4S to ios 6... I am surprised to see that the wi-go option is grayed out.. I did reset all the setting but no luck... Is there any fix coming for this or will apple exchange the device??? I want wi-fi option back

    I have upgraded my iPhone 4S to ios 6... I am surprised to see that the wi-go option is grayed out.. I did reset all the setting but no luck... Is there any fix coming for this or will apple exchange the device??? I want wi-fi option back

    Seems like a wide spread problem. See this post: https://discussions.apple.com/thread/4310121?tstart=0

  • I cannot close or import or any function to iphoto.  I have been getting the same message for many days "Photos are being imported to the photo library.  Please wait for import to complete."  I do not know where the photos would be importing from.

    I cannot close or import or any function to iphoto.  I have been getting the same message for many days "Photos are being imported to the photo library.  Please wait for import to complete."  I do not know where the photos would be importing from.  How do I get it to proceed?

    After Force Quitting, as LarryHN recommended,
    Select the iPhoto Library in the Finder. By default it is in your Pictures folder.
    Ctrl-click or right-click the iPhoto lIbrary. Select "Show package contents" from the panel, that will pop up.
    Look for a folder named "Importing" or "Import". Remove this folder, but don't touch anything else.
    Then launch iPhoto again.
    If iPhoto now is working again, check the folder you removed, if there are any photos that you want to keep and save them.

  • My debit card kept getting rejected by my iTunes account, it there an issue with iTunes? I have been using the same Card since very long time. I downloaded the iOS 8, can I talk to someone so I can get this resolve?

    My debit card kept getting rejected by my iTunes account, it there an issue with iTunes? I have been using the same Card since very long time. I downloaded the iOS 8, can I talk to someone so I can get this resolve?

    Apple is not here. Contact Apple to resolve your issue:
    iTunes Support WorldWide
    or
    iTunes Support by eMail ww
    Cheers,
    GB

  • HT1725 I can't downlaod my purchased music to my iPad.I tried using the computer and it said all purchases for this account have been downlaoded.The musics are on my music folder on the iPad but they are not playing.Help me out.

    I can't downlaod my purchased music to my iPad.I tried using the computer and it said all purchases for this account have been downlaoded.The musics are on my music folder on the iPad but they are not playing.It's showing download error.Tap to retry on the download section of iTunes on the iPad.I just change from iPad2 to iPad 4G and I started having this problem..Help me out.

    Try here >  Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Is there any direct syntax for summing two values

    Friends,
                       I just have a problem of summing up two or more similar product_id 's  quantities.
    for ex:  assume an Internal Table IT_PRODUCT. consider it has two fields one is PRODUCT_ID ( Primary key in Database ) and the other field is QUANTITY.
    IT_PRODUCT.
    PRODUCT_ID           QUANTITY
    I1001SA101                    10
    I1001SA101                    20
    my desired output is to sum up the similar product_id' s of the internal table and to have only one summed record in the internal Table.
    IT_PRODUCT
    PRODUCT_ID           QUANTITY
    I1001SA101                    30
    Is there any direct syntax to do the same or suggest me some more methods.
    Pradeep.

    Use COLLECT statement..
    Check this code...
    DATA : BEGIN OF itab OCCURS 0,
    matnr LIKE ekpo-matnr,
    menge LIKE ekpo-menge,
    END OF itab.
    DATA : itab2 LIKE itab OCCURS 50 WITH HEADER LINE.
    SELECT matnr menge INTO CORRESPONDING FIELDS OF
    TABLE itab FROM ekpo UP TO 20 ROWS.
    LOOP AT itab.
      COLLECT itab INTO itab2.
    ENDLOOP.
    Message was edited by:
            Perez C

  • Is there any tech support for Neo4 products?

        One of the reasons I'm watching this forum is to see what kinds of problems I might end up with my Neo4 Platinum since I found out that MSI support of their products kinda sucks (not to say any other any other OEM is any better) This system I just built started out with a MSI X800 Pro PCIe (thought I wouldn't have any compatability problems since both were MSI products) that ended up being sent back because of a bad GPU. It did install ok but had garbage on the boot screen and wouldn't run any 3d programs. I tried to update the Bios on it and liveupdate wouldn't recognize it for bios update or driver updates. When I called tech support on it I was informed that none of the MSI X800 Pro PCIe cards are recognized as MSI products. I also asked why liveupdate does not show any driver updates for the motherboard drivers (I also have a KT6V that shows all the MB driver updates even when they have been updated) and I was informed that none of the new motherboards will show driver updates if they are current on the board. Problem is that my realtek drivers are updated and they still show up on liveupdate.
         I also have a hard time buying the statements made on this board that the forums are not part of MSI support. The Forums are not shown as an outside link but are listed under Service for MSI products and if you go to the Sevice page under the discription for the Forums it states that "You can also post a message there to get help." and yes I did read the forum rules where it states that "There is no MSI support to be found here. The moderators are not paid by MSI and do not work for MSI, we are users just like you." If everyone posting on these forums are just users helping each other, then wouldn't it be better just to state that the boards with SB are not compliant with the 24 pin connectors and that you need a PSU that is backward compatible to 20 pin specs?
         This "rant" of mine is not meant to be a bashing of MSI products since I haven't found many other OEMs that are any better in their support but is intended to help present and future users of MSI products and since I hope I'm using this forum as is intended by the "rules" can anyone who has a K8N Neo4 Platinum let me know if they are having a problem or know of a problem with the AMD 3500+ (winchester) voltage never reaching 1.4 volts on this mb? If the manuals for the mb and my psu are correct I have a dedicated 12 volt rail for the cpu with 15A. The cpu voltage stays around 1.37 on CoreCenter and 3 other programs that monitor cpu voltage even when running Prime95 with 100% cpu usage.

    The default for CPU Voltage is By CPU VID default for Adjust CPU VID is Startup which should be 1.4 volt. Since Cool'n'Quiet requires a driver to run and I also show low CPU VID in cmos it should be 1.4v but I tried with Cool'n'Quiet disabled and also tried setting CPU VID to 1.4 but have never made it to 1.4 I also tried setting it to 1.425 which is the next step and still read under 1.4.

  • Is there any interface support for Microsoft MSMQ from Oracle AQ?

    Hi frns,
    Like Oracle's Native AQ Interface for Java , Is there any support for microsft?.
    Is there any way of posting msgs from AQ to MSMQ?
    Regards
    Sunil

    Take a look at DUMP_CSV function by Tom Kyte.

  • Is there any x64 support for Advanced Queuing?

    Is there any current x64 ODP.NET driver version that supports AQ? I know that the 11.1.0.7.20 version supports it but that will only run in 32bit mode. Is there anything for x64 available yet? If not is there an ETA?

    11.2 has it.
    There's an 11.2 odac bundle beta, or you can use the production version of the 11.2 full cllient.
    Hope it helps,
    Greg
    Edited by: gdarling on Apr 23, 2010 9:48 AM
    Oops, the beta is just 32 bit. Full client should have what you need.

  • Is there any customer support for this product?

    I have a client who has sent me two documents. When I log on using my Adobe ID it says
    the Document could not be found because of one of the following reasons:
    * Document was rejected by one of signatories
    * Document was cancelled by initiator
    * Document was deleted by initiator
    * Document has expired
    My Adobe ID is not the same as the email I use everyday and I don't see a place to add additional emails. Now I have three Adobe IDs
    How do I contact Customer service or tech support for this product?

    Yes, this is exactly what I'm wondering too. Without it, we can't build any apps that download content without the risk of the content being deleted.
    Here's the background before Apple introduced the new "do not back up" attribute:
    http://www.marco.org/2011/10/13/ios5-caches-cleaning
    Fortunately, Apple addressed it after that blog post in 5.0.1. See bullet #4 here, quoted below
    https://developer.apple.com/icloud/documentation/data-storage/
    Q:  My app has a number of files that need to be stored on the device permanently for my app to function properly offline. However, those files do not contain user data and don't need to be backed up. How should I store those files in iOS 5?
    A: Starting in iOS 5.0.1 a new "do not back up" file attribute has been introduced allowing developers to clearly specify which files should be backed up, which files are local caches only and subject to purge, and which files should not be backed up but should also not be purged. In addition, setting this attribute on a folder will prevent the folder and all of its contents from being backed up.
    Important: The new "do not back up" attribute will only be used by iOS 5.0.1 or later. On iOS 5.0 and earlier, applications will need to store their data in <Application_Home>/Library/Caches to avoid having it backed up. Since this attribute is ignored on older systems, you will need to insure your app complies with the iOS Data Storage Guidelines on all versions of iOS that your application supports.
    Now we just need Adobe to support the attribute in the AIR SDK. What do you say Adobe?

  • IS THERE ANY CUSTOMER SUPPORT FOR QUICKTIME?

    I've been reading many posts that basically have the same problem: namely, quicktime doesn't properly install. In my case it happened both with the itunes + qt download and qt alone. I can't fully install qt, but then it keeps trying to update itself as long as my computer is on. It's very annoying. I have an IPod, so I need some version of qt. Microsoft at least seems to employ people to answer forum questions. I don't see anyone at Apple doing that. DOes anyone know of how to get in touch with customer support?

    Hi,
    We were selling LCCS to enterprise customer under a different licensing program, but have since stopped the sale of that.
    You should check out this thread - http://forums.adobe.com/message/4110049#4110049 for a discussion on this.
    Jeff

  • Is there any way to see what I have stored in the Cloud for iTunes?

    I am looking to find if some TV shows I bought are in my Cloud. They are in my libarry currently, but I want to make sure that if my computer ever crashes and loses data, that they won't be lost. I am looking for a way to see all the content that is in the Cloud for iTunes, but I have only find the webpage that shows contacts, notes, ect. Anyone know if this is possible? Thanks.

    No, Apple very rarely make advance announcements of bug fixes.
    You can restore much of the look & feel of the previous version with these shortcuts:
    Ctrl-B to turn on the menu bar.
    Ctrl-S to turn on the sidebar.
    Ctrl-/ to turn on the status bar.
    Click the magnifying glass top right and untick Search Entire Library for the old search behavior.
    Alternatively you roll back to iTunes 10.7. If so, first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    You might also want to use iTunes Feedback.
    tt2

Maybe you are looking for

  • I am able to bookmark a site, but "Bookmarks" button does not appear.

    HTC Evo 4G. Firefox mobile browser 20.0.1 Using Firefox browser, if I am at a website and press "Menu" on my phone I have the "Bookmark" option. Pressing it I get "Bookmark added" message. But then when I press "Menu", it gives me the "Bookmark" opti

  • 5th generation ipod games no longer supported???

    I have a 60 GB 5th generation iPod video. I had a hard drive crash and lost all of the games that I had downloaded from the itunes store. Now, iTunes has restored all of my purchased items, but my 5th generation games don't seem to have appeared duri

  • Line width of e-mail

    Some e-mail text displays with lines of fixed width, i.e., text appears as a column and doesn't fill the whole width of the pane. Is there a way to undo this, so that I have complete control of the width of text by resizing the pane? iMac PPC G5   Ma

  • Testing the idoc

    hi.... how we will test the idoc after getting the requirement , before developing the scenario.. thanks and regagrds, Vishnu..

  • NO AUDIO OUTPUT DEVICE IS INSTALLED AFTER WINDOWS 8.1 UPDATES

    Hi, Getting the error " No Audio Output device installed" on my laptop after installing windows update on 8.1. Please let me know what can be the cause of this issue. Product # B6B48AV HP ENVY dv6 Notebook PC Thanks In Advance. Ratheesh