BlackBerry App line does not work for me on 10.3.1.1179

Hello
Is - it still works?
I ask because the link does not work for me on 10.3.1.1179

I installed the nod as the link says without problems, then I downloaded and install the link on my phone. But it automatically closes when I press on it, even with Snapchat & Spotify.
Anyone got it works on a Q10?

MOD Edit: Edited post to reflect the new title of the topic

Not all android applications work on BB10. I know that Snapchat does not work. Snapchat does not work, nor will they let someone else create an app to work. They don't like the BB users and do not plan to support them. Others I have not used personally so I can't say with certainty the current state for these applications.

Tags: BlackBerry Smartphones

Similar Questions

  • BlackBerry Passport Passport does not work for me - suggestions requested

    Hi Support Forum.

    I got my passport for two days, and the path forward is unclear.  At this point, I think I'll return it.

    My previous BB was a blowtorch OS7.  E-mail for this device has been managed by the Blackberry Internet Service and when I worked at RIM called the Blackberry Web Client.  Call this fabulous service of the BIS.  I use a small ISP that works very well the POP3/SMTP servers, but they don't have any capacity or wish to store e-mail.  I got an email address with them since 1994, and I don't want to give up.

    What mail is arrived at my ISP and survived spam virsus scan, he was placed on a POP3 server, and a copy was provided to the BIS (such as [email protected]).  BIS filtered incoming e-mails using the filters I could configure and then eliminated survivors emails to the device.  Perfect.  Very old emails the torch nosed over and have been deleted.  Perfect.

    My desktop computer from the server via Thunderbird POP3 e-mails, and they have been removed from my POP3 mailbox.   My POP3 mailbox is empty, my desktop computer has everything and my held torch I want it.  Perfect.

    BB10 does not support that at all, of course. My passport has no e-mails on this subject because it is perfectly synchronized with an empty POP3 mailbox.

    My ISP suggested that I should configure IMAP with gmail from Google.  Several appliances in a managed environment.  The instructions look delicate and we must all understand that giving our e-mail database to gmail is just like him giving the NSA.  I have no idea how to handle this.

    The people there, if you like the way in which architecture BIS works, which will be lost when you get braces OS10.

    Will there be a slick way to reproduce what the BIS OS7 devices?

    I turns out that I couldn't get the Passport works as a good normal POP3 client.  He wants to just sync with any server that show you, and I need to download the messages.

    I went back, and I'm going to Andriod-land.

  • App store does not work for me.

    I remember accidentally erased my PC under Windows 8, the other day (go about everything), and applications that came with my PC, except the app Store are now gone. To make things worse it refuses to work after I click on it: all I get is the loading screen, then it brings back me to the start screen. So, how does it work? Because this is my first time using this app, and I read online that it's bascially the only way to get back them. So any advice for me?

    Also, I used the Troubleshoot utility, and it is said that the App Store is somehow corrupt...

    Hello

    I'm happy to have helped. Sounds like you were doing a few very good troubleshooting!

    (If a response has been the solution please mark as 'response' or if it was useful)
    Please, mark it as "Found this useful - Me Too. Help others find the
    solutions to follow.)

    Move every day, go further

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • BlackBerry Q10 timer does not work for a project of 10 Q Lable in Blackberry

    Hi all

    I'm just a new Black Berry Q 10 and just beginner. I get some helpful solutions here to correct my mistakes. I am very grateful for this site and its members.

    In my application, I would like to add a timer to a lable. for every second, I want to Christophe Lable value. Here is my code Qml and timer.

    // Default empty project template
    import bb.cascades 1.0
    import CustomTimer 1.0
    // creates one page with a label
    Page {
        Container {
            id:root
            layout: DockLayout {}
            property int f: 10
            Label {
                id: timerLabel
                text: qsTr("Hello World")
                textStyle.base: SystemDefaults.TextStyles.BigText
                verticalAlignment: VerticalAlignment.Center
                horizontalAlignment: HorizontalAlignment.Center
    
            }
            Timer {
                id: lightTimer
                // Specify a timeout interval of 1 second
                interval: 1000
                onTimeout: {
                    root.f -= 1;
                    timerLabel.text = "Timer:"+root.f;
                    lightTimer.start();
                    if(root.f<0){
                        lightTimer.stop();
                    }
                    } // end of onTimeout signal handler
            } // end of Timer
    
        }
    }
    
    #include 
    #include "timer.hpp"
    
    Timer::Timer(QObject* parent)
         : bb::cascades::CustomControl(),
         _timer(new QTimer(this))
    {
        Q_UNUSED(parent);
        connect(_timer, SIGNAL(timeout()), this, SIGNAL(timeout()));
        setVisible(false);
    }
    
    bool Timer::isActive()
    {
        return _timer->isActive();
    }
    
    int Timer::interval()
    {
        return _timer->interval();
    }
    
    void Timer::setInterval(int m_sec)
    {
        // If the timer already has the specified interval, do nothing
        if (_timer->interval() == m_sec)
            return;
    
        // Otherwise, set the interval of the timer and emit the
        // intervalChanged() signal
        _timer->setInterval(m_sec);
        emit intervalChanged();
    }
    
    void Timer::start()
    {
        // If the timer has already been started, do nothing
        if (_timer->isActive())
            return;
    
        // Otherwise, start the timer and emit the activeChanged()
        // signal
        _timer->start();
        emit activeChanged();
    }
    
    void Timer::stop()
    {
        // If the timer has already been stopped, do nothing
        if (!_timer->isActive())
            return;
    
        // Otherwise, stop the timer and emit the activeChanged()
        // signal
        _timer->stop();
        emit activeChanged();
    }
    
    #ifndef TIMER_HPP_
    #define TIMER_HPP_
    
    #include 
    #include 
    
    class QTimer;
    
    class Timer : public bb::cascades::CustomControl
    {
        Q_OBJECT
    
        Q_PROPERTY(bool active READ isActive NOTIFY activeChanged)
        Q_PROPERTY(int interval READ interval WRITE setInterval
                   NOTIFY intervalChanged)
    
    public:
        explicit Timer(QObject* parent = 0);
    
        bool isActive();
        void setInterval(int m_sec);
        int interval();
    
    public
    
    slots:
        void start();
        void stop();
    
    signals:
        void timeout();
        void intervalChanged();
        void activeChanged();
    
    private:
        QTimer* _timer;
    };
    
    #endif /* TIMER_HPP_ */
    

    and I sign up time as follws custome...

    Registering the custome timer
    qmlRegisterType("CustomTimer", 1, 0, "Timer");
        // create scene document from main.qml asset
        // set parent to created document to ensure it exists for the whole application lifetime
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    

    where I'm wrong... I'm just Hello world but Timer shows no lable value. Please help me!

    Hello

    It was my mistake in looking at timer in Qml. The good way to start is given below.

    Already... .i was

      Timer {
                id: lightTimer
                // Specify a timeout interval of 1 second
                interval: 1000
                onTimeout: {
                    root.f -= 1;
                    timerLabel.text = "Timer:"+root.f;
                    lightTimer.start();
                    if(root.f<0){
                        lightTimer.stop();
                    }
                   } // end of onTimeout signal handler
            } // end of Timer
    

    but now to hide a bad start timer and start in the right way

    Timer {
                id: lightTimer
                // Specify a timeout interval of 1 second
                interval: 1000
                onTimeout: {
                    root.f -= 1;
                    timerLabel.text = "Timer:"+root.f;
    //                lightTimer.start();
    //                if(root.f<0){
    //                    lightTimer.stop();
    //                }
                   } // end of onTimeout signal handler
            } // end of Timer
    
        }
        onCreationCompleted: {
            lightTimer.start();
        }
    

    Thank you!!!

  • I keep seeing pop up ads powered by '' cn tatami '' whenever I have to navigate using Safari or open a link on the FB Adblocker app does not work for this. Any suggestions? There is no option to cross the pop-up ad that it redirects to various Web sites.

    I keep seeing pop up ads powered by '' cn tatami '' whenever I have to navigate using Safari or open a link on the FB Adblocker app does not work for this. Any suggestions? There is no option to cross the pop-up ad that it redirects to various Web sites.

    Cache and history of the site Clear settings - Safari -.

    (1232)

  • I need a program to view usable photograph or app to open my pictures to view them, open them in my editing software. Apple makes such a program? Photo does not work for me.

    I have a 27 "iMac, I photograph and videos. The Photos app does not work for me. I would like to have a program that will open my photography let me scroll through the folder of photos and when I find one that I need to change in my photoshop cs6 software I can open the file, then save in my pictures folder.  I am now watching the Mac Book Pro. 15 "the $2499 but I need a usable photo view software. I'm not the editor, import, the shared project, etc., I want only the Viewer.  I have purchase different applications that does not work. The last was the date limits only one that I could find I want but it not work altogether after about 4 days. The name of it is (Viewer). I really want to get another Mac product because I like really everything except the viewer or no photo viewer. Please help, it is very important for me!

    Diana_G100

    If you simply want to watch as download you them from your camera, you can simply use the default built in app Preview. He opens them - that is what I use before deciding that one has need of some 'creative' changes or anything, and then drop them into my own folder of Photos (in my documents) that I created when I decided that I did not care to iPhoto or Photos.

  • my browser cannot open google and facebook and other https sites that it does not open even the app store does not work, I tried to change my DNS google DNS and disable IPv6 but still no use, help PLZ!

    my browser cannot open google and facebook and other https sites that it does not open even the app store does not work, I tried to change my DNS google DNS and disable IPv6 but still no use, help PLZ!

    You may have installed one or more variants of the malware "VSearch' ad-injection. Please back up all data, and then take the steps below to disable it.

    Do not use any type of product, "anti-virus" or "anti-malware" on a Mac. It is never necessary for her, and relying on it for protection makes you more vulnerable to attacks, not less.

    Malware is constantly evolving to work around defenses against it. This procedure works now, I know. It will not work in the future. Anyone finding this comment a couple of days or more after it was published should look for a more recent discussion, or start a new one.

    Step 1

    VSearch malware tries to hide by varying names of the files it installs. It regenerates itself also if you try to remove it when it is run. To remove it, you must first start in safe mode temporarily disable the malware.

    Note: If FileVault is enabled in OS X 10.9 or an earlier version, or if a firmware password is defined, or if the boot volume is a software RAID, you can not do this. Ask for other instructions.

    Step 2

    When running in safe mode, load the web page and then triple - click on the line below to select. Copy the text to the Clipboard by pressing Control-C key combination:

    /Library/LaunchDaemons

    In the Finder, select

    Go ▹ go to the folder...

    from the menu bar and paste it into the box that opens by pressing command + V. You won't see what you pasted a newline being included. Press return.

    A folder named "LaunchDaemons" can open. If this is the case, press the combination of keys command-2 to select the display of the list, if it is not already selected.

    There should be a column in the update Finder window. Click this title two times to sort the content by date with the most recent at the top. Please don't skip this step. Files that belong to an instance of VSearch will have the same date of change for a few minutes, then they will be grouped together when you sort the folder this way, which makes them easy to identify.

    Step 3

    In the LaunchDaemons folder, there may be one or more files with the name of this form:

    com Apple.something.plist

    When something is a random string, without the letters, different in each case.

    Note that the name consists of four words separated by dots. Typical examples are:

    com Apple.builins.plist

    com Apple.cereng.plist

    com Apple.nysgar.plist

    There may be one or more items with a name of the form:

    com.something.plist

    Yet once something is a random string, without meaning - not necessarily the same as that which appears in one of the other file names.

    These names consist of three words separated by dots. Typical examples are:

    com.semifasciaUpd.plist

    com.ubuiling.plist

    Sometimes there are items (usually not more than one) with the name of this form:

    com.something .net - preferences.plist

    This name consists of four words (the third hyphen) separated by periods. Typical example:

    com.jangly .net - preferences.plist

    Drag all items in the basket. You may be prompted for administrator login password.

    Restart the computer and empty the trash.

    Examples of legitimate files located in the same folder:

    com.apple.FinalCutServer.fcsvr_ldsd.plist

    com Apple.Installer.osmessagetracing.plist

    com Apple.Qmaster.qmasterd.plist

    com Apple.aelwriter.plist

    com Apple.SERVERD.plist

    com Tether.plist

    The first three are clearly not VSearch files because the names do not match the above models. The last three are not easy to distinguish by the name alone, but the modification date will be earlier than the date at which VSearch has been installed, perhaps several years. None of these files will be present in most installations of Mac OS X.

    Do not delete the folder 'LaunchDaemons' or anything else inside, unless you know you have another type of unwanted software and more VSearch. The file is a normal part of Mac OS X. The "demon" refers to a program that starts automatically. This is not inherently bad, but the mechanism is sometimes exploited by hackers for malicious software.

    If you are not sure whether a file is part of the malware, order the contents of the folder by date modified I wrote in step 2, no name. Malicious files will be grouped together. There could be more than one such group, if you attacked more than once. A file dated far in the past is not part of the malware. A folder in date dated Middle an obviously malicious cluster is almost certainly too malicious.

    If the files come back after you remove the, they are replaced by others with similar names, then either you didn't start in safe mode or you do not have all the. Return to step 1 and try again.

    Step 4

    Reset the home page in each of your browsers, if it has been modified. In Safari, first load the desired home page, then select

    ▹ Safari preferences... ▹ General

    and click on

    Set on the current Page

    If you use Firefox or Chrome web browser, remove the extensions or add-ons that you don't know that you need. When in doubt, remove all of them.

    The malware is now permanently inactivated, as long as you reinstall it never. A few small files will be left behind, but they have no effect, and trying to find all them is more trouble that it's worth.

    Step 5

    The malware lets the web proxy discovery in the network settings. If you know that the setting was already enabled for a reason, skip this step. Otherwise, you should undo the change.

    Open the network pane in system preferences. If there is a padlock icon in the lower left corner of the window, click it and authenticate to unlock the settings. Click the Advanced button, and then select Proxies in the sheet that drops down. Uncheck that Auto Discovery Proxy if it is checked. Click OK, and then apply.

    Step 6

    This step is optional. Open the users and groups in the system preferences and click on the lock icon to unlock the settings. In the list of users, there may be some with random names that have been added by the malware. You can remove these users. If you are not sure whether a user is legitimate, do not delete it.

  • App Store does not work

    Dear Apple, personal,

    My App Store does not work. I'm not sure but I think since I upgraded my iOS version 9.3 the App Store has stopped working. I mean I tried to download several apps and their icons still display the word "pending"... It doesn't matter if I'm with a Wi - fi or cellular... It just doesn't... I have an iPhone 6 (bought on March 2016 in Houston - TX). Please, help me to solve this problem. Thank you very much. Paola Pereira.

    Have you ever tried to force restart the phone after the update into the button sleep and home for 10 seconds, until the Apple logo comes back again?

    You won't lose data, but force the reboot can cure some problems after installing new software or applications.

    Also try logging out of your account in the settings/iTunes and AppStore, reboot the phone and you log in again.

    In the event that you have implemented in settings/general/Restrictions of restrictions, turn them off and try again to update or download your applications.

  • I had a windows 2008 r2 domain 1 DC everything worked fine, I added a second windows of DC 2012 now Kerberos does not work for RDP

    I had a windows 2008 r2 domain 1 DC everything worked fine, I added a second windows of DC 2012 now Kerberos does not work for the RDP, Hyper V replication is nothing below a couple of samples of what I see I do not know where to begin finding the problem

    + System

    -Supplier

    [Name]  Microsoft-Windows-Security-Kerberos
    [Guid]  {98E6CFCB-EE0A-41E0-A57B-622D4E1B30B1}
    [EventSourceName]  Kerberos
     
    -EventID 3

    [Qualification] 32768
     
    Version 0
     
    Level 2
     
    Task 0
     
    Opcode 0
     
    Keywords 0 x 80000000000000
     
    -TimeCreated

    [SystemTime] 2016-01 - 03 T 01: 34:27.000000000Z
     
    2991 EventRecordID
     
    Correlation
     
    -Execution

    [ProcessID] 0
    [ThreadID] 0
     
    Channel system
     
    Computer DC02.xxxxxxonline.com
     
    Security

    -EventData

    LogonSession xxxxxxONLINE.COM\xxxxxx
    ClientTime
    1:34:27.0000 03/01/2016 Z ServerTime
    Error code 0 x 19
    ErrorMessage KDC_ERR_PREAUTH_REQUIRED
    ExtendedError
    ClientRealm
    CustomerName
    ServerRealm xxxxxxONLINE.COM
    ServerName krbtgt/xxxxxxONLINE.COM
    TargetName krbtgt / * address email is removed from the privacy *
    ErrorText
    E file
    Line d3f
    30773054A103020113A24D044B3049301FA003020112A1181B16524F434B45594F4E4C494E452E434F4D726F636B65793005A003020117301FA003020103A1181B16524F434B45594F4E4C494E452E434F4D726F636B65793009A103020102A20204003009A103020110A20204003009A10302010FA2020400

    --------------------------------------------------------------------------------

    Binary data:

    In the words

    0000: 54307730 010203A 1 044DA213 3049304B
    0008: 0203A01F 18A 11201 4F52161B 59454B 43
    0010: 494C4E4F 432E454E 6F724D4F 79656B 63
    0018: 03A 00530 30170102 0203A01F 18A 10301
    0020: 4F52161B 59454B 43 494C4E4F 432E454E
    0028: 6F724D4F 79656B 63 03 HAS 10930 A2020102
    0030: 30000402 0203 HAS 109 02A 21001 09300004
    0038: 010203 A 1 0402A20F 00

    In bytes

    0000: 30 77 30 54 A1 03 02 01 0w0T¡...
    0008: 13 4 04 4 B 30 49 30 A2. ¢ M.K0I0
    0010: A0 03 02 01 12 A1 18 1F. ....¡.
    0018: 1 16 52 4F 43 4 B 45 59 B... XXXXXX
    0020: 4F 4 49 4F 4E 45 2ND 43 ONLINE. C
    0028: 4 72 6F 63 6 b 65 79 OMxxxxxx 4F
    0030:30 05 A0 03 02 01 17 30 0. .... 0
    0038: A0 03 02 01 03 A1 18 1F. ....¡.
    0040: 1 16 52 4F 43 4 B 45 59 B... XXXXXX
    0048: 4F 4 49 4F 4E 45 2ND 43 ONLINE. C
    0050: 4 72 6F 63 6 b 65 79 OMxxxxxx 4F
    0058:30 09 03 02 01 02 A2 A1 0... ¡¢
    0060: 02 04 09 03 02 A1 00 30... 0.¡..
    0068:01 A2 02 04 00 30 09 10... ¢... 0.
    0070: A1 03 02 01 0F A2 02 04... ¢...
    0078: 00                        .

    + System

    -Supplier

    [Name]  Microsoft-Windows-Security-Kerberos
    [Guid]  {98E6CFCB-EE0A-41E0-A57B-622D4E1B30B1}
    [EventSourceName]  Kerberos
     
    -EventID 3

    [Qualification] 32768
     
    Version 0
     
    Level 2
     
    Task 0
     
    Opcode 0
     
    Keywords 0 x 80000000000000
     
    -TimeCreated

    [SystemTime] 2016-01 - 02 T 16: 52:38.000000000Z
     
    2943 EventRecordID
     
    Correlation
     
    -Execution

    [ProcessID] 0
    [ThreadID] 0
     
    Channel system
     
    Computer DC02.xxxxxxonline.com
     
    Security

    -EventData

    LogonSession xxxxxxONLINE.COM\xxxxxx
    ClientTime
    16:52:38.0000 02/01/2016 Z ServerTime


    Error code 0 x 19
    ErrorMessage KDC_ERR_PREAUTH_REQUIRED
    ExtendedError
    ClientRealm
    CustomerName
    ServerRealm xxxxxxONLINE.COM
    ServerName krbtgt/xxxxxxONLINE.COM
    TargetName krbtgt / * address email is removed from the privacy *
    ErrorText
    E file
    Line d3f
    30773054A103020113A24D044B3049301FA003020112A1181B16524F434B45594F4E4C494E452E434F4D726F636B65793005A003020117301FA003020103A1181B16524F434B45594F4E4C494E452E434F4D726F636B65793009A103020102A20204003009A103020110A20204003009A10302010FA2020400

    --------------------------------------------------------------------------------

    Binary data:

    In the words

    0000: 54307730 010203A 1 044DA213 3049304B
    0008: 0203A01F 18A 11201 4F52161B 59454B 43
    0010: 494C4E4F 432E454E 6F724D4F 79656B 63
    0018: 03A 00530 30170102 0203A01F 18A 10301
    0020: 4F52161B 59454B 43 494C4E4F 432E454E
    0028: 6F724D4F 79656B 63 03 HAS 10930 A2020102
    0030: 30000402 0203 HAS 109 02A 21001 09300004
    0038: 010203 A 1 0402A20F 00

    In bytes

    0000: 30 77 30 54 A1 03 02 01 0w0T¡...
    0008: 13 4 04 4 B 30 49 30 A2. ¢ M.K0I0
    0010: A0 03 02 01 12 A1 18 1F. ....¡.
    0018: 1 16 52 4F 43 4 B 45 59 B... XXXXXX
    0020: 4F 4 49 4F 4E 45 2ND 43 ONLINE. C
    0028: 4 72 6F 63 6 b 65 79 OMxxxxxx 4F
    0030:30 05 A0 03 02 01 17 30 0. .... 0
    0038: A0 03 02 01 03 A1 18 1F. ....¡.
    0040: 1 16 52 4F 43 4 B 45 59 B... XXXXXX
    0048: 4F 4 49 4F 4E 45 2ND 43 ONLINE. C
    0050: 4 72 6F 63 6 b 65 79 OMxxxxxx 4F
    0058:30 09 03 02 01 02 A2 A1 0... ¡¢
    0060: 02 04 09 03 02 A1 00 30... 0.¡..
    0068:01 A2 02 04 00 30 09 10... ¢... 0.
    0070: A1 03 02 01 0F A2 02 04... ¢...
    0078: 00                        .

    This issue is beyond the scope of this site which is for the consumer to related issues.

    To ensure that you get a proper answer, ask either on the Technet site, if it is a type of Pro problem, or MSDN if it's related to the developer

    http://social.technet.Microsoft.com/forums/en-us/homes/en-us/home

    http://social.msdn.Microsoft.com/Forum

  • WindowsXPSP3 / MSNDialup DOES NOT WORK FOR 6 weeks.

    WindowsXPSP3 / MSNDialup DOES NOT WORK FOR 6 weeks. I've been with remote access, since it was offered so I understand speed and ETC.

    Hot Mail (which I don't like) seems to work.

    On E-mail MSN - Cannot send or what I get Emails (all once in a while, we get... and when I go to Hotmail... arrived at 22). Spoke with 13 technicians, deleted all files (alt/shiftF9) 7 times. Some of the questions:

    MSN Inbox (on top left over files) continues to go to the yellow throttle and says I am offline and yet I am on line. Connection errors are the following: 0x80072efd / 0 x 0 80191002 / 0x80072eff deleted trash e.a. returns every time. Mark an unread Email and it is deleted. Tons and tons and tons of other issues. Microsoft Techs seem to be stuck on Shift/Alt/F9 and nothing is improving and sometimes gets worse... as the last time I alt/shif/F9...folders came back but old e-mail appears. Electronic mail in white and empty window. Super slow navigation & usually stops and tell me that I'm not online. Diagnosis of micro said: I am and contact MFG. A tech admitted that a new server is entered in questions. But 6weeks and I pay for the service? A tech says it's at my end frustrated, I got another PC, downloaded my MSN dialup and now... I stillHAVE questions about the addition of the computer. The 2 computers are not connected. Stand alones. Telephone lines checked. Audited modems. Microphone seems to keep secrets. And obviously can't solve my problems. Visibly frustrated spendinging 15 hours on the phone, and tired of the Microsoft Music on hold. Should I cancel? Today, same hot mail was. Using Internet Explorer, I get ERROR 500 messages or a web page from Microsoft to the particular address no longer exists. Unable to navigate while using MSN Internet Browser. What in the world that happens to us all the MSN people?

    Hi Buck,

    The question that you are running better agrees to the MSN forum at the link below.

    http://answers.MSN.com/forums.aspx?ForumID=c58ac82d-9d92-4FE0-8681-91e2d0bb1268

    For the related issue of Windows or anything related to the Windows operating system, do not hesitate to contact us and we will be happy to help you.

  • I want to uninstall the application, because it does not stay charged and want more on my computer and not perform the steps for removing it, but none does not work for me.

    I want to uninstall the application, because it does not stay charged and want more on my computer and not perform the steps for removing it, but none does not work for me.

    Cancel see answer #1 in https://forums.adobe.com/thread/2023066 - includes a link to Chat from Monday to Friday

    Sign out of your account... Uninstall... to run vacuuming...

    -http://helpx.adobe.com/creative-cloud/help/install-apps.html (and uninstall)

    -https://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

  • I can t install apps, its does not work

    I just bought it and now for every apps it says installation failed try again but nothing works, anyone know why?

    Thank you very much it works finally I don t know why, but it of working

    2016-01-26 18:07 GMT + 01:00 kglad [email protected]>:

    I can t install apps, its does not work created by kglad

    https://forums.Adobe.com/people/kglad> in * Cloud Creative download &

    Installation *-see complete discussion

    https://forums.Adobe.com/message/8430429#8430429>

  • Creative cloud office 'Apps' tab does not work

    I bought the license to CC a couple of days, but since installing I couldn't install/manage applications. Office CC 'Applications' tab will not open correctly only saying "download error".

    I got the CC on this computer in the past by another employer, but I uninstalled it when the project took end. I never encountered this problem with the CC of this time. I also got CS5 on this computer all the time and in the past with CS5 and CC has not caused any problems.

    I have now uninstalled and reinstalled this new CC a couple of times but the 'Apps' tab does not always work.

    I then also uninstall the CS5 and to be sure, I removed manually all the Adobe stuff like this guide: Re: how to remove and cancel the creation could f...

    After that, I reinstalled the CC but always the 'Apps' tab does not work. May be there is always something left (on this computer) the subscription of Creative previous cloud (another license) that is causing the problem with this new CC subscription?

    I have a Mac Book Pro with Mac OS X 10.9.5

    If you have uninstalled but did not follow upwards with the help of the vacuum of CS then you have probably some remains that could interfere with other facilities.  If you uninstall, then use the cleaning tool, you may have better luck.

    Adobe Creative Suite cleanup tool

    helps resolve installation for CS3 thru CS6 and creative cloud problems

    http://www.Adobe.com/support/contact/cscleanertool.html

    In addition, it should have been without having to uninstall the original CC that you had with another employer.  You must only have signed out of it, and then you could connect you with another subscription thereafter.

  • Drawing a custom profile does not work for me. It works for you?

    Drawing a custom profile does not work for me. It works for you?

    I can only apply on an existing line, but cannot make a new one with the selected profile. In fact if I change the profile other than the default uniform I also can't draw a new stroke with any other width than the default 1 point. This does not seem normal.

    Use the SC5 on a PC.

    You have "Art has basic appearance nine" checked in the appearance Panel Menu? If Yes... Clear the check box, and then try again.

  • "Include the header row in the following Pages" does not work for the table

    Hello

    I use the 8.1.2.3337.1.509884 version.

    Pagnation function "include header line in the following Pages" does not work for any table in my design. (the check box cannot be verified little matter how many times I click it)

    I put such table already in a bodypage flow.

    Any reported similar problem?

    Any suggestions?

    Thank you.

    -Vicky

    The only thing I can think is that your table is not in a subform flowed. Who will stop the check boxes.

Maybe you are looking for