How to disable switch control when your Siri doesn't work.

There's alot of people who managed to turn their switch control off by Siri or by triple click. How ever I disabled my Siri and was stuck at lock screen with no screen feedback. Went thru alot of online remedys and all didn't work. I'm sure there are a few who had this problem. So what I did was -
i hold home and power button to off my i pad. Then turn it on again. (When it just loaded to main screen you will have a few sec before switch control works again. )So when you are in main screen , triple click  to get the accessibility box and off switch control. By tapping on the option. It worked for me. Hope it works for you. The Internet don't have much to help ref switch control which is irritating. Hope this post helps.

I am so sorry for sending the same thread for so many times, there is a problem with my brower.

Similar Messages

  • How to find apple ID when your email doesn't work

    Can anyone assist - I"m overseas and I have limited access to any of normality of getting things sorted
    I lost my iphone5, however I can't remember my apple ID to access find my iphone app - I've tried to use apple to find my account but none of my email address work in locating me.. can anyone offer help?

    See this
    Apple ID: How to find your Apple ID

  • How cani disable switch control

    i enabled switch control on my ipad 2. i cant enter my passcode or slide to unlock. the ipad wont do anything. how do i disable or get to the settings with out deleting anything from my ipad. or can i control the settings from another computer

    Try triple clicking the home button.

  • What to do when your program doesn't work.

    A huge number of posts here seem to relate to code that has been written (one presumes by the poster), but which doesn't work.
    I get the impression that people don't know what to do next.
    It's really not that difficult. When you're writing your program you constantly have in mind what you expect will happen as a result of each bit of code that you put.
    If at the end of the day, the program as a whole doesn't behave as you expected, then somewhere in there there must be a point at which the program starts doing something that doesn't correspond to what you anticipated. So, you add some System.err.println statements to test your beliefs.
    Consider this program that tests whether a number is prime.
    public class Test
        public static void main(String args[])
            // Get the number to test.
            int number = Integer.parseInt(args[0]);
            // Try each possible factor.
            int factor;
            for(factor = 2; factor < number; factor++)
                // See whether it is really a factor.
                if(number / factor == 0)
                    break;
            if(factor == number)
                System.out.println("Number is not prime.");
            else
                System.out.println("Number is prime.");
    }Straight forward enough, but it doesn't actually work :( It seems to say that every number is not prime. (Actually, not quite true, but I didn't test it that carefully, since it didn't work).
    Now, I could scrutinise it for errors, and then, having failed to find the problem, I could post it here. But let's suppose I'm too proud for that.
    What might be going wrong. Well, how sure am I that I'm even managing to capture the number of interest, number. Let's put in a System.err.println() to test that.
    Is the program in fact trying the factors I expect? Put in System.err.println() for that.
    Is the program correctly determining whether a number is a factor? Need another System.err.prinln (or two) for that.
    public class Test
        public static void main(String args[])
            // Get the number to test.
            int number = Integer.parseInt(args[0]);
            System.err.println("Number to check is " + number);
            // Try each possible factor.
            int factor;
            for(factor = 2; factor < number; factor++)
                System.err.println("Trying factor " + factor);
                // See whether it is really a factor.
                if(number / factor == 0)
                    System.err.println(factor + " is a factor.");
                    break;
                System.err.println(factor + " is not a factor.");
            if(factor == number)
                System.out.println("Number is not prime.");
            else
                System.out.println("Number is prime.");
    }Let's try with on the number 6.
    The output is:
    Number to check is 6
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is not a factor.
    Trying factor 4
    4 is not a factor.
    Trying factor 5
    5 is not a factor.
    Number is not prime.
    Whoah! That's not right. Clearly, the problem is that it's not correctly deciding whether a number is a factor. Well, we know exactly where that test is done. It's this statement:
                if(number / factor == 0)Hmm.... let's try 6 / 3, 'cos 3 is a factor.
    6 / 3 = 2.
    But that's not zero. What the.... Oh - I see, it should have been number % factor.
    Ok - let's fix that, and run it again.
    Now the output is:
    Number to check is 6
    Trying factor 2
    2 is a factor.
    Number is prime.
    Not the right answer, but at least it's now figured out that 2 is a factor of 6. Let's try a different number.
    Number to check is 9
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is a factor.
    Number is prime.
    Again, got the right factor, but still the wrong answer. Let's try a prime:
    Number to check is 7
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is not a factor.
    Trying factor 4
    4 is not a factor.
    Trying factor 5
    5 is not a factor.
    Trying factor 6
    6 is not a factor.
    Number is not prime.
    Aagh! Obvious - the final test is the wrong way round. Just fix that, remove that System.err.println()s and we're done.
    Sylvia.

    Consider this program that tests whether a number is
    prime.
    [attempt to divide by each integer from 2 to n-1]At risk of lowering the signal to noise ratio, I
    should point out that the algorithm given is just
    about the worst possible.
    I know that the point was to illustrate debugging
    and not good prime test algorithms, and I disagree
    with the correspondent who thought the post was
    condescending.
    Anyway, the java libraries have good prime testing
    methods based on advanced number theory research that the
    non-specialist is unlikely to know. Looking at the java
    libraries first is always a good idea.
    Even with the naive approach, dramatic improvements
    are possible.
    First, only try putative divisors up to the square root
    of the number. For 999997 this is about 1000 times faster.
    Next only try dividing by prime numbers. This is about
    7 times faster again. The snag, of course, is to find the
    prime numbers up to 1000, so there might not be much
    advantage unless you already have such a list. The sieve
    of Erastosthenes could be used. This involves 31 passes
    through an array of 1000 booleans and might allow an
    improvement in speed at the expense of space.
    Sorry if I've added too much noise :-)

  • How to disable player controls when embedding mp4 video?

    I am trying to embed a mp4 video in a web page. Is there a tag for hiding the player's controls? I want my video to loop without any display of the player controls. Also, if anyone knows of some sample code for embedding .mp4 with all available tags I would sure like to see it.
    Thanks,
    Jerry

    Hi t, I think you would find help on the Flash Forum here:
    http://forums.adobe.com/community/flash/flash_general?view=discussions&start=0
    Thanks,
    eidnolb

  • How do I remove appshat when resetting firefox doesn't work???

    I have went through control panel and uninstalled anything from that day that I had installed. I also went and reset firefox. I also went and removed it from the add-ons Manager tab. I don't know what else to do really. Any help will be greatly appreciated. Thank you for your time.

    Hello,
    Try following the guide here:
    * http://malwaretips.com/blogs/appshat-virus-removal/
    It seems you may need free antimalware tools such as :
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])

  • [Solved] How to disable switching workspaces in XFCE when scrolling?

    As the title says, I want to disable switching workspaces when scrolling with the mouse on the desktop. I disabled the workspace switcher setting "Change workspaces using the mousewheel" but that doesn't change anything. Any ideas?
    Last edited by Terminator (2012-05-15 14:41:53)

    Thanks

  • How to disabled mutli desktop when I using Full Screen?

    How to disabled mutli desktop when I using Full Screen?
    Some app have a preferences option to do this which like iTerm2
    In Lion-Style FullScreen windows, I can't use command + tab to  quickly switch between in the apps, I must switch to the  app own desktop which is using fullscreen, It's so trouble. I even think this is a flaw in Apple's design.
    So, How can I have use this  feature in others apps such as Google Chrome, Mail, Safari and so on.
    Please Help me!  Thanks! Thanks! Thanks!

    nobody can help me ?

  • How to disable autostart (application) when managed server restart ?

    Hi Ppl,
    How to disable autostart (application) when managed server restart ?
    I want some of the applications to remain not started. In WebSPhere, we have an option disable auto start for applications.
    I don't find in weblogic.
    Thanks

    Hi,
    I agree with Faisal. When you shutdown your WL server while the application is running, the thing is when you start your server again, it would automatically start the application with it. Now if the application was down when you shutdown the server, it _the application_ won't start with the server.
    So it depends on the application last state, when you start your server.
    Regards,
    Mohab

  • HOW TO DISABLE CPU behavior when no battery inside macbookpro ?

    I realized, when i do not have the abttery inside the macbook, what i do not fotne, to save chargecycles, that my cpu wil not go above 1ghz. i observed this with the use of the coreduotemp application, wich can be free downloaded and monitors temperature and cpu speed of your macbook. i wrote to the developper, and he confirms that observation, so it is not an software bug.
    First, i invite you to test this on your macs and report, and secound i would like to have a solution, i bought this mac for power, not for slow power.
    maybe someone knows how to disable this behavior, thx

    If your MBP is consistently running at 80°C or higher, there is probably a problem with it... My machine idles around 54°C (when connected to an external monitor -- less without) and maxes around 75°C when the processor and GPU are being pushed (i.e. video intense gaming).
    Additionally, the MBP's battery is not Lithium Ion -- it is Lithium Polymer -- and is designed to be used IN the laptop. You are worrying about nothing (or next to nothing); even if your theory is correct, you are perhaps talking about a 5% decrease in the overall lifespan of the battery...if you think that is worth the possibility of data loss, then I guess running without the battery is for you...
    However, you will not be able to disable the down-throttle of the CPU speed.

  • How to get a confirmation when your email is delivered or read  ?

    With Mail app ,How to get a confirmation when your email is delivered or read?

    When I send mail with Mail app , there is flying letter pops up. But now I could not see anymore. Do you know how can I active that animation ?
    Thanks for your help

  • How do you find out when your gamer club expires?

    how do you find out when your gamer club expires??
    Solved!
    Go to Solution.

    Hey trixr4trey,
    Thanks for being a Gamers Club Unlocked member.  I'm happy to answer your question today.
    To find your Gamers Club Unlocked expiration date log into your account on BestBuy.com.  Then click on "Overview" under the Rewards tab.  Gamers Club Unlocked information will be on the right.
    I will also send you a private message with your current expiration date so that you have the information as quickly as possible.
    Best regards,
    Mike|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Disabling Switch Control...

    Hello!
    wonder if there any methods of disabling Switch Control from iPad2?
    I got mine sorted out but i'm still looking from some people who knows best.
    we know that it was frozen and you can't do anything...
    thanks

    ArcCloud,
    Accessibility features can be enabled and disabled in Settings -> General -> Accessibility.
    iPad User Guide - Accessibility features
    http://help.apple.com/ipad/7/
    All my best,
    Allen

  • What happens when your lock button stops working?

    what happens when your lock button stops working?

    The world end.
    Seriously, nothing "happens". 
    are you asking how to fix it?  If so, why don't you just ask?

  • TS4079 I have an iphone 5 and my Siri doesn't work at the moment. But when I restart my phone it works but 5 minutes later it doesn't work again!!! What should I do???

    I have an iphone 5 and my Siri doesn't work at the moment. But when I restart my phone it works but 5 minutes later it doesn't work again!!! What should I do???

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

Maybe you are looking for

  • Firefox opens the old browsing window (previous session) every time i try and open a new window, how do I change this back?

    Every time I go to open a new window, the old one will come up instead. For a while it was working fine, then I kept needing the old window and would use the 'restore previous session' feature to access this. However, even after I didn't need it anym

  • ITunes is on a locked disc or you do not have access

    Having a real problem with this. Got a new PC earlier this week to replace a laptop that was stolen. It runs Windows 7 home premium. Basically the setup is this. iTunes used to store and organise all music. All music stored on external harddrive conn

  • Performace of XI system

    1. How to check the performance of Xi system? 2. How to Scedule the Scenarios in Xi? 3. Why Idoc and Http adapters dont have sender agreement ? 4. How to test Xi scenario? 5. What is moduling concept in XI?

  • Illustrator 16 and File Server

    Dear All, All my files are on XServe 10.7.5, and I have 6 MacPro 2009 on a 1000BT network (2 GB on the server) 3 MacPros Under 10.6.8 and 3 MacPros under 10.7.5. I have the following problem: With CS6: - on a MacPro 10.6.8, I work on a file, make cha

  • How to install packages use aur?

    I want install dropbox package  and download use tarball done,it save home  dirctory. so i follwed by https://wiki.archlinux.org/index.php/Ar - Repository . # pacman -S base-devel   is done.  I try to  find build dirctory no have.   i did make folder