My Creative Cloud app does not display any apps.  Just shows spinning circle in apps tab.

Mac OS X 10.8.5
Reinstalled Creative Cloud app several times.  No luck. All other tabs I can view.

I am also having the same problem

Similar Messages

  • Hi! I get the message: "Creative Cloud installation does not work anymore" I just downloaded it! Why?

    I just down loaded Creative Cloud, but it doesn't work. Do you know why?

    What error message or screen do you see?
    This is an open forum, not Adobe support... you need Adobe staff support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • My Creative Cloud desktop app does not display any means of signing in to my account. What would be the reason?

    Creative Cloud desktop app does not display any means of signing in to my account. What would be the reason

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html
    or
    Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Every time I open creative cloud  it does not load. Is there anything I can do to fix it.

    Every time I open creative cloud  it does not load. Is there anything I can do to fix it.

    Hi Tahmid,
    Please refer to the threads below where this issue has been addressed:
    New Creative Cloud App unusable: it's blank!
    creative cloud is blank window why?
    Re: Creative Cloud app opening blank
    Regards,
    Sheena

  • TS3297 ITunes for IOS does not display any content in the iTunes store

    iTunes for IOS does not display any content in any section (other than Genius tab).
    NB: I am signed in with my Apple ID & have an Internet connection.
    On selecting say the "Music" tab the display briefly say's "Loading ...", but nothing displays, just a white screen.
    I have tried signing out of iTunes & re-setting the iPad, but this does not fix the problem.
    (The App Store is working fine!)

    Status is :540672
    <REQUESTRESULT>
    <RESULT>
    <UID></UID>
    <STATUS>CAPI_STAT_DATA_ICAL</STATUS>
    </RESULT>
    <FAILURE>
    <UID></UID>
    <STATUS>CAPI_STAT_DATA_ICAL</STATUS>
    </FAILURE>
    <PARSE ERROR>
    <MESSAGE>VALUE?TE</MESSAGE>
    <STATUS>CAPI_STAT_DATA_ICAL_PARAMVALUE</STATUS>
    <VTEXT>VALUE?TE:20060830
    END:VEVENT
    END:VCALENDAR
    </VTEXT>
    </PARSE ERROR>
    <PARSE ERROR>
    <MESSAGE>VALUE?TE</MESSAGE>
    <STATUS>CAPI_STAT_DATA_ICAL_PARAMNAME</STATUS>
    <VTEXT>(null)</VTEXT>
    </PARSE ERROR>
    <PARSE ERROR>
    <MESSAGE>VALUE?TE</MESSAGE>
    <STATUS>CAPI_STAT_DATA_ICAL_PARAMNAME</STATUS>
    <VTEXT>(null)</VTEXT>
    </PARSE ERROR>
    </REQUESTRESULT>

  • Aperture 3 project does not display any images in one Project

    This is a strange situation.  The bullets below outline the situation:
    The project does not display any images
    When I place the pointer over the project it shows there are 500+ images
    I have located the RAW images stored in my aperture library
    I can pull up the images using a smart folder and searching for photos taken on the event day
    This is happening only to one of my projects that I know of (weird!!)
    I have tried to 're-add' the image by both importing and dragging and dropping into the project, neither works
    I tried the following basics:
    Fixed permissions
    Rebuilt the database
    Tried to re-import the data, but when I have the 'don't import duplicates' these are not an option
    Found the images in my Aperture library
    I created another project and drug all of the images into that project
    Any idea how I can fix this?
    My fear is that if I delete the original project, the original master images will be deleted.

    The most common cause of this is some sort of stuff in the search box at the top of the browser that you don't expect to be there. Just clear it and all your images should show up.
    RB
    One note - if you drug your images from one project to another it moves them vs copies them unless you hold down the option key.

  • Product Revenue Bookings and Backlog Dashboard does not display any data

    Product Revenue Bookings and Backlog Dashboard does not display any data even though the load completed successfully.
    They are able to see just the parameters.
    Not sure if the upgrade of the database from 9.2.0.6 to 10.2.0.3 is a factor.
    What can I check?
    Is there some table to verify that the data exists for display in the Product Revenue Bookings and Backlog Dashboard?
    Screenshot is at:
    https://gtcr.oracle.com/gtcr-dir/gtcr_5637/6415786.993/Product_Revenue_Bookings_Backlog_Dashboard.doc
    Support suggested to create a new request set and run the initial load with load all summaries option; but there was no change in the Product Revenue Bookings and Backlog Dashboard.
    Any ideas?

    hi
    We have faced the similar problem after the upgrade to 10G
    What we did was
    Ran the initial load of time dimension, Item setup request set, and the request set of all the dash board in the clear and initial load mode..
    we were able to get the data once the clear and load is completed successfully
    Regards
    Ramesh Kumar S

  • Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applica

    Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applications.

    I received no error message. The application was just trying to find applications unsuccessfully.
    I am using MAC OS 10.10.1
    I tried to uninstall the application  but it seems that a kind of deamon is still installed thus providing me to reinstall properly. Do you know where are the elements to remove in order to get my machine just like before ?
    Otherwise I would have to reinstall everything and this would be a pain.
    Thanks for your help.

  • This Formula(Function) compiles but does not display any result

    Please can anybody help me resolve this issue.The code below is a code for a formula(function) column in oracle report, i have complied this code and it successfully complied but it does not display any result for the column having a stock balance in the entire report.
    function CF_STOCK_BALFormula return Number is
         v_all_positive NUMBER;
         v_all_negative NUMBER;
    begin
         IF :transaction_type IN ('RECEIPT', 'RETURN') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal + :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal + :quantity;
              END IF;
         ELSIF :transaction_type IN ('ISSUE') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal - :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal - :quantity;
              END IF;
         END IF;
    RETURN (:cp_stock_bal);
    end;
    Edited by: Gbenga on Jan 17, 2012 11:30 PM

    Please can anybody help me resolve this issue.The code below is a code for a formula(function) column in oracle report, i have complied this code and it successfully complied but it does not display any result for the column having a stock balance in the entire report.
    function CF_STOCK_BALFormula return Number is
         v_all_positive NUMBER;
         v_all_negative NUMBER;
    begin
         IF :transaction_type IN ('RECEIPT', 'RETURN') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal + :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal + :quantity;
              END IF;
         ELSIF :transaction_type IN ('ISSUE') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal - :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal - :quantity;
              END IF;
         END IF;
    RETURN (:cp_stock_bal);
    end;
    Edited by: Gbenga on Jan 17, 2012 11:30 PM

  • Lightroom 5 stopped working. Told to remove the program and re-installed. Creative cloud installation does not proceed to 0%. What is wrong? Using a PC.

    Lightroom 5 stopped working. Told to remove the program and re-installed. Creative cloud installation does not proceed to 0%. What is wrong? Using a PC.

    I installed the Creative Cloud again. Now it works.

  • I can not install the Express after the Extreme tha AirPort tool is of no help. It does not display any base station.

    I can not install the Express after the Extreme tha AirPort tool is of no help. It does not display any base station.

    What is the exact model of the AirPort Express that you are trying to install? Which version of the AirPort Utility are you using? What is the operating system and version, and on what device, are you running the AirPort Utility on?

  • My adobe presenter redemption code (creative cloud) membership does not work.

    my adobe presenter redemption code (creative cloud) membership does not work.  Each time I input my presenter code at creativecloud/redeem it returns a message 'ooops, this code has been redeemed.'

    I got both installed but on installing Presenter keeps giving errors that a previous version is installed on the computer and cannot proceed.  I verified that there is no previous version and keep redoing the install and get stuck AGAIN and AGAIN at this point.
    I also verified that I have the latest version of Flash on Chrome and I have the latest version.  Why is Adobe so all over on downloading/installing their products.  I (and other paying customers)  cannot waste more time on this very simple procedure just because the software packages are not packaged properly or. the teams in charge of ensuring the products DID NOT correctly package the products securely (with the updates included) and more importantly, ensured that the products were linked to user accounts who purchased them.

  • Creative cloud apps tab / error.

    My creative cloud apps tab is empty even though the rest of the tabs work. In the apps tab it says download error, click to refresh. However this doesn't work.  So i can't update the apps I have and can't download new ones since I can't even see them.
    Help!

    Creative Cloud "Download Error" message

  • Creative Cloud Application does not install on late 2014 Retina iMac.

    I am already user of PS CC 2014 and LR for about a year. Until now this worked flawlessly on a different Mac. After migration to new machine Creative Cloud app stopped working (actually this was the ONLY app that did not work after migration, one of about 100 others). I uninstalled all CC products and attempted a clean install from administrative account, i.e. install from freshly downloaded Creative Cloud installer from Adobe web site failed. Relevant diagnostic report (top part) attached below.
    Need help immediately.
    Process:               Creative Cloud [460]
    Path:                  /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud
    Identifier:            com.adobe.acc.AdobeCreativeCloud
    Version:               1.8.1.451 (???)
    Code Type:             X86 (Native)
    Parent Process:        ??? [1]
    Responsible:           Creative Cloud [460]
    User ID:               501
    Date/Time:             2014-12-18 10:54:01.390 -0800
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        CFB00717-0E16-24C4-DDFA-4ED1092A0117
    Time Awake Since Boot: 100 seconds
    Crashed Thread:        0  CrBrowserMain  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000027d1e35c
    VM Regions Near 0x27d1e35c:
        mapped file            000000000d00c000-000000000d2f9000 [ 2996K] rw-/rwx SM=COW  /private/var/folders/*/*.csstore
    -->
        MALLOC_TINY            000000007be00000-000000007c000000 [ 2048K] rw-/rwx SM=COW 
    Application Specific Information:
    objc_msgSend() selector name: release
    Thread 0 Crashed:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x962b20a7 objc_msgSend + 23
    1   com.apple.CoreFoundation       0x90b9089f _CFAutoreleasePoolPop + 47
    2   com.apple.AppKit               0x97989180 -[NSApplication finishLaunching] + 745
    3   com.apple.AppKit               0x97988ab0 -[NSApplication run] + 143
    4   libcef.dylib                   0x04603e17 0x43f9000 + 2141719
    5   libcef.dylib                   0x0460361c 0x43f9000 + 2139676
    6   libcef.dylib                   0x046376f8 0x43f9000 + 2352888
    7   libcef.dylib                   0x0465011e 0x43f9000 + 2453790
    8   libcef.dylib                   0x04636d6a 0x43f9000 + 2350442
    9   libcef.dylib                   0x0447022f 0x43f9000 + 487983
    10  HEX.dylib                     0x0437ec2a HEXMessageProcessor::runLoop(std::string const&) + 378
    11  HEX.dylib                     0x043517e8 0x434f000 + 10216
    12  HEX.dylib                     0x0438661d HEXMessageProcessor::processMessage(std::string const&, std::string const&, ProcessMessageOutput&, MessageObject const&) + 77
    13  HEX.dylib                     0x0434feaf processMessage + 175
    14  NXGCore.dylib                 0x00275c30 ExternalGateway::sendMessageToApplet(MessageObject const&, MessageStruct const*, bool (**)(void const*), char const**) + 896
    15  NXGCore.dylib                 0x00275753 ExternalGateway::handleMessage(MessageObject const&, MessageStruct const*, bool (**)(void const*), char const**) + 435
    16  NXGCore.dylib                 0x0027636e ExternalGateway::processMessageFromOutside(MessageStruct const*, bool (**)(void const*)) + 302
    17  com.adobe.acc.AdobeCreativeCloud 0x000b04b5 start + 20085
    18  com.adobe.acc.AdobeCreativeCloud 0x000b44d5 start + 36501
    19  com.adobe.acc.AdobeCreativeCloud 0x000ac9d9 start + 5017
    20  com.adobe.acc.AdobeCreativeCloud 0x000ab98a start + 842
    21  com.adobe.acc.AdobeCreativeCloud 0x000b096e start + 21294
    22  com.adobe.acc.AdobeCreativeCloud 0x000ab675 start + 53

    Jeff,
    thanks for the suggestion. I see your point, I actually tried to use uninstallers, but PS CC 2014 uninstaller throws off an error (not specific, unfortunately). I think I try to do a complete erase, followed by clean installation of Mac OS X, followed by manual re-installation of my apps and will just move my docs from full backup I made before migration.
    Any idea what actually may have caused the problem? What I see is CC app installer going through initialization, then it is downloading something for a short time then it just disappears. Greyed out icon of CC app briefly appears in menubar then it is gone. All Adobe crash logs as well as diagnostic logs generated during this time are not that informative. Looks like a few of the threads crash very soon after initialization…
    thanks again for the time you took to answer
    Jacek

  • Creative Cloud Menu does not show installed Lightroom App

    I'm wondering if there is something I can do to fix the problem.  Lightroom does work as long as I dig through menus to find it.

    Did you have a stand alone light room ?
    You need to uninstall the stand alone Light room from the Computer. Then you can follow these links:
    1. Lightroom Mobile app says I'm running on a trial but I have been using LR 5 for quite some time now on my laptop. Will my trial expire and roll over to my account, or will I have to pay?
    2.Re: I´m a CC member (PS and LR). Why does LR say it´s 28 days left on a trial for LR mobile?
    3.Why doesn't LR show as installed in CC
    Please refer to:
    Lightroom 5 is installed but Creative Cloud doesn't think so… can't update LR
    Re: Creative Cloud not showing apps.
    Reinstall LR5 over the creative cloud
    http://helpx.adobe.com/lightroom/kb/lightroom-trial-ccm.html
    They are useful.
    Regards
    Rajshree

Maybe you are looking for