BlackBerry Blackberry Assistant Passport does not speak for me

Maybe this isn't the right forum, but I could not find any that seemed most appropriate.

The program Assistant Blackberry is no longer speak to me or give me voice guests.  Sound in general is enabled because I hear a beep when I start to dictate in the wizard.  I searched help and also all setings menu that I could find, and nothig seems to help.

In the settings menu for Assistant (drop-down menu at the top of the program), I tried to disable voice server and then turn it back on, but it seems to make no difference.

Is there a switch somewhere that I disabled?  How can I get voice commands to return to Wizard?

Thank you.

Have you tried a reboot? Try a soft reset?

Tags: BlackBerry Smartphones

Similar Questions

  • BlackBerry BB Passport does not

    After trying to link my passport for the computer (iMac OS 10.11.1) using the Blackberry link, that does not, I contacted support service provider (No. BB support!) we have downloaded new software, which does not, now, I have a passport of non-working BB - nothing, just blinking red dot! Can someone help me with this?  Thank you

    If you can get guaranteed support, that sounds like the best approach at this point. It is always best to try to fix it yourself first, and I think it's an easy fix, but if you can't do it then you can not do. Good luck.

  • 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.

  • 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.

  • 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!!!

  • The SOAP API does not speak for me

    Hello

    I'm trying to implement billsafe, a provider of payment services in my store-system...

    I almost tried everything since nearly two days but I can't operate that billsafe-SOAP-API correctly responds to my requests. Whatever I do, I always return (as the result/answer) the full XML API. (The same as if I call the URL in a browser)

    What I do is I post a request cfhttp to the API, including SOAP content. But whatever I post, I get the contents of the API... (See http://vr-wohnideen.de/test.cfm)

    This is the API - URL: https://sandbox-soap.billsafe.de/wsdl/V211

    It's the way I try to connect to the URL:

    " < cfhttp method = 'post' url = ' https://sandbox-SOAP.billsafe.de/WSDL/v211 "result ="httpResponse"> "

    < cfhttpparam type = "header" name = "content-type" value = "text/xml" / >

    < cfhttpparam type = "header" name = "charset" value = "utf-8" / >

    < cfhttpparam type = "header" name = "SOAPAction" value = "prepareOrderRequest" / >

    < cfhttpparam type = "xml" name = "message" value = "#trim (soapBody)" # "/ >"

    < / cfhttp >

    I want to run the function prepareOrder/prepareOrderRequest, but all that contains my SOAP-file, I don't get a good answer, so I think that the problem is inside my cfhttp call.

    I tried several different arguments, I have modified SOAPAction and tried different combinations for the soapBody (type body = | name = filecontent...) but its always the same result.

    Any ideas?

    Here's my soapbody:

    < cfsavecontent variable = "soapbody" >

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < SOAP - ENV:Envelope xmlns:SOAP - ENV =" http://schemas.xmlsoap.org/SOAP/envelope/ "xmlns:ns1 =" urn: BillSAFE "> "

    < SOAP - ENV:Body >

    < ns1:prepareOrderRequest >

    Merchant <>

    < id > 000 / < ID >

    < license > 000 < / license >

    < / merchants >

    < application >

    < signature > 000 < / signature >

    < version > 1.0.0 < / version >

    < / application >

    < order >

    < number > 7 < / number >

    < amount > 11.90 < / amount >

    < > 1.90 taxamount < / taxamount >

    < currencyCode > EUR < / currencyCode >

    < / order >

    < customer >

    < id > 7 / < ID >

    company of <>< / company >

    < sex > M < / Type >

    < firstname > Paul < / name >

    < name > Positiv < / lastname >

    < Street > Marchenstrsse < / street >

    < number > 15A < / house number >

    < code postal > 49084 < / code >

    < City > Osnabrück < / City >

    < Email > [email protected] < / email >

    < country > OF < / country >

    < dateOfBirth > 1987 - 12 - 20 < / dateOfBirth >

    < / customer >

    < articleList >

    < number > 1 < / number >

    < name > Testname_1 < / name >

    < description > test_description < / description >

    goods of < type > < / type >

    < quantity > 1 < / quantity >

    < > 10.00 netPrice < / netPrice >

    < > 19.00 tax < / tax >

    < / articleList >

    invoice of < product > < / product >

    validation of < userAction > < / userAction >

    < url >

    < return > http://www.ABC.com < / return >

    < cancel > http://www.ABC.com < / cancel >

    < / url >

    < / ns1:prepareOrderRequest >

    < / SOAP - ENV:Body >

    < / SOAP - ENV:Envelope >

    < / cfsavecontent >

    Thanks in advance!

    Sebastian

    I don't know anything about the service you are trying to use, but my guess would be that you are using the wrong URL for your cfhttp call.  One that you listed seems to be to the WSDL, that works and is found as a response.  When you call a web service via cfhttp you need not the URL of the WSDL.  Try to use this instead: https://sandbox-soap.billsafe.de/V211/prepareOrderRequest/.  I guess only it is the correct position to use.  Their documentation should tell you with certainty.

  • Windows 8.1 does not speak for Color Laserjet CM1312

    After you have installed windows 8.1 my Color Laserjet CM1312 printer and pc are not communicating.  Tried several drivers update. They do not install. What can I do more?

    PS this post and his response were separated from the other thread and edited its about. -Hp moderator of the Forum

    We would need to see an error or a Setup log message before we can give you some useful suggestions.  Setup logs is normally displayed somewhere as C:\Users\username\appdata\local\temp with a name of the hp type... install... Newspaper.  If you can find one of those that we then validate and share so we can review and tell you what is happening.

    Otherwise, you have to do your best to clean your computer and start again.  I assume you mean that you upgraded the operating system of the PC which worked previously, not put in place a 2nd accidentally broken computer connect to the 1st old PC.  If this is the case then it is more than probably a file conflict somewhere on the hard drive that needs to be cleaned before installing the new drivers.  I would suggest wiping the machine everything related to the HP printer, starting by the devices and Printers window, the properties of print server and driver tabs and the C:\Program Files directory.  Once all old Referances are removed you should have a good shot at a successful installation when you use the latest software Win8.1 of http://support.hp.com.

  • BlackBerry Z10 BlackBerry Desktop Software does not support the BlackBerry 10 operating system

    I am wanting to sync the Z10 with my Mac andhave times link BB and BB Desktop Software but the message it gives me is:

    This BlackBerry device running the BlackBerry 10 operating system.  BlackBerry Desktop Software does not support the BlackBerry 10 operating system. Visit www.blackberry.com/support to learn more about how to synchronize your multimedia files, backup and restore data from the camera and more, with your device.

    All software are up to date on Mac and BBZ10

    What should I do?

    You have the two desktop software and link configurΘ for dΘmarrer when a device is connected to your Mac. You must go into the Desktop software settings (I don't remember exactly what to do, but there should be some settings at the top right) and set it to not open when a device is connected. Once you have it set to not open when your phone is connected, make sure that the link is set to open. That should solve your problem.

    Let us know if that helps you.

  • BlackBerry BB passport do not import emails using the Devicde of Bold 9900 switch

    I tried using the switch of the device several times to transfer all the data from BB9900 for the new Passport SE

    I created all the e-mail accounts & passwords on the Passport exactly the same as on BB9900

    I upgraded to the latest version of the software on Passport SE

    I followed the instructions for the control unit switch, it makes his work and said everything is done.

    All I get on the passport of BB is like my contacts, notes, texts, calendar etc.

    What I don't understand is all my emails stored on BB9900

    I tried to go back and manually restore from the backup file created during the switch of the device, when I click on restore to custom, there is no option to import e-mails here at all.

    One thing that is strange, in the hub when I click on it to "mark prior reading", he tells me to 1200 + emails will be marked as read so it seems that the old emails are there (I have almost as many new emails on the Passport), but they are not displayed.

    Bottom line, how to import the EMAILS ONLY from a device BB7 to Passport?

    JBPassport wrote:

    Or is it just BB10 o/s does not allow for email message storage at all?

    Correct ^^.

  • BlackBerry Smartphones BB does not illuminate

    Hello please help me my blackberry 9900 display does not illuminate. the device lights up red liught comes off and her but he just using the screen please help

    Hello nihalbbman1

    This nuked BB. Take it to a hardware technician.

  • Bluetooth: Application does not wait for investigation

    Good afternoon

    For almost a week already had a problem, which already has a load of messages on the forum, after research and do the trial & error for three days, I hope someone can relate to no doubt tiny stupid error I have and I just can't.

    The goal is simple: Once loaded, begins to discover Bluetooth lights nearby.

    Problem: The tags are located and what is work decently, but he does not obey the synchronization (wait/notify).

    I tried several things, but I keep hitting the same problem. It does not take into account my lock and did the survey on the bottom, and only after main thread finished drawing.

    To facilitate the access to tests, I've isolated the problem section.

    // Does Not wait for Inquiry to end!
    

    The solutions tried so far:

    -Temporary "fix" sleep vs sync

    S ' object in static final or none and that any combination of the three options.

    -Develop a 9700 OS 6 SDK: 6.0.0.30 Plugin Java: 1.3.0

    import java.util.Vector;
    
    import javax.bluetooth.BluetoothStateException;
    import javax.bluetooth.DiscoveryAgent;
    import javax.bluetooth.LocalDevice;
    
    import net.rim.device.api.ui.component.AutoTextEditField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.MainScreen;
    
    public class MyScreen extends MainScreen
    {
        Vector tags = new Vector();
        private Object lock=new Object();
    
        public MyScreen() throws BluetoothStateException
        {
            super();
            setTitle("Bluetooth Discover");
            Listener myDiscoveryListener = new Listener();
            try
            {
               LocalDevice localDevice = LocalDevice.getLocalDevice();
    
               DiscoveryAgent discoveryAgent = localDevice.getDiscoveryAgent();
    
               discoveryAgent.startInquiry(DiscoveryAgent.GIAC, myDiscoveryListener);
            }
            catch(BluetoothStateException bse)
            {
                Dialog.alert("BluetoothStateException exception: "+bse.toString());
            }
            // Does Not wait for Inquiry to end!
            try
            {
                synchronized(lock)
                {
                    lock.wait();
                }
            } catch (Exception e) {}
            Vector tags = myDiscoveryListener.mac;
            String text="";
            for (int i=0; i
    
    
    import java.util.Vector;
    
    import javax.bluetooth.DeviceClass;
    import javax.bluetooth.DiscoveryListener;
    import javax.bluetooth.RemoteDevice;
    import javax.bluetooth.ServiceRecord;
    
    public class Listener extends Thread implements DiscoveryListener
    {
        Vector mac = new Vector();
        private Object lock=new Object();
    
        public Listener()
        {
        }
    
        public void deviceDiscovered(RemoteDevice remoteDevice, DeviceClass cod)
        {
            try
            {
                System.out.println("Device: " + remoteDevice.getBluetoothAddress());
            } catch(Exception e){ } finally{ mac.addElement(remoteDevice.getBluetoothAddress().toString()); }
        }
    
        public void inquiryCompleted(int discType)
        {
            if (mac.size() > 0)
            {
                try
                {
                    lock.notifyAll();
                } catch (Exception e){}
            }
        }
    
        public void servicesDiscovered(int transID, ServiceRecord[] servRecord)
        {
        }
    
        public void serviceSearchCompleted(int transID, int respCode)
        {
        }
    }
    

    Thanks in advance for all the help possible and yes I am services that support are not being implemented are not necessary for the current problem that prevents me to further develop my application.

    PF

    I have the same problem before and still can't fix. I don't know, but it seems that there is a problem in the 9700 OS.

    http://supportforums.BlackBerry.com/T5/Java-development/BB-Bluetooth-connection-cannot-act-as-client...

    In any case please inform me if there is good new ants on this issue.

    Thanks in advance.

    Best regards

    Albert Siu

  • spell check does not work for dreamweaver Uppercases how can I get it back?

    spell check does not work for dreamweaver Uppercases how can I get it back?

    Hello

    Dreamweaver is an Adobe product. I suggest you to contact Adobe support for assistance. Please post your query in the Adobe forums.
    Dreamweaver

    http://forums.Adobe.com/community/Dreamweaver

  • Can I allow an application for one person on my family share but does not allow for each other?

    Can I allow an application for one person on my family share but does not allow for each other?

    You can't delegate who has access and who doesn't have access to the applications. You can lock devices with age restrictions, so only items appropriate age are at their disposal. Or you can hide your list purchases. The purchased app can then be displayed when you want to share with someone else, then be hidden again once the application is downloaded on their device.

    I hope this helps.

    SI10

  • Assistance number does not

    Hi I'm trying to contact the support, but the phone number does not work for the Ireland: 1-800-275-2273, any advice?

    Contact Apple for support and service - Apple Support


    Ireland

    1800 804 062

  • Single-pass does not work for Web sites after the last update of firefox

    Single-pass does not work for Web sites after the last update of firefox. This works in IE and Chrome and it works under windows (when starting the computer), but not with any website in Firefox.

    Firefox 30 spent some less commonly used "Always turned on" plugins "asking to activate. To check and change this to SimplePass, you can use the page modules. Either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons

    In the left column, click on Plugins. Then on the right, check the control on the right side of the SimplePass.

    You may need to exit Firefox and start it again before it takes effect.

    A little luck?

Maybe you are looking for

  • Adobe Flash will not update

    When I try to update Flash it says that Firefox does that block version

  • VAIO laptop

    pushed the botton on my laptop and is vaio went with a new computer name I agree on everything that the computer asked me, and the result was to restart a new windows, I lost all previews program as office and I lost valuable files which can do to ha

  • payment of the error

    Hello, I try to buy a single image of m and the payment step, I have an error since yesterday: we are changed but an error has occurred. If you do not receive an e-mail confirmation of the payment in the next few minutes, try again or contact Custome

  • Level microcode CPU nested ESXi 6.0 error

    Hello the VMware community!  I've built a budget at home and execution 5.5 vSphere lab / vCenter node cluster 2.  I try to put in place an environment vSphere nested 6.0 for testing purposes and met with an immediate obstacle.My first step was to cre

  • Can not find all the workflow integrated

    I think I saw them once. But now I try to use the workflow integrated into orchestrator and can not find them...I just see http * snmp * documentation workflow - but where are all the other workflow integrated?