FASTBOOT REASON: KEY PRESSED

I have a Razor Maxx and I got this screen that says   *AP FASTBOOT FLASH MODE (S) 10.98(*) DEVICE IS LOCKED STAUS CODE 0 BATTERY OK CONNECT USB DATA CABLE FASTBOOT REASON: KEY PRESSED*
PLEASE HELP ME WITH THIS!!!!

I am now getting this same error.  What information do you need.  I try to turn the phone on and it says what the person pasted above.  I try to do the reset with the power and volume down and get the same screen again.  I cant get into my phone.  I do know my phone was promting me to do an installation upgrade today.  but I said install later.  Please help
When i plug my phone into usb it does nothing.

Similar Messages

  • Key Press Not Responding If You Go Back (re-do step)

    I have a software simulation in which one of the steps is to enter some numbers into a text field and press the Enter key. Works good on the first pass. If you then click the Back button and go back to a previous step the Enter key will no longer work. I have search the forums and some blogs without any luck.
    Example:
    http://elearning.biworldwide.com/misc/Soft_Sim/Soft_Sim.htm
    After you reach the text entry step and enter the correct numbers and press Enter, click the Back button (lower left) and back up to the Click Member step and re-preform the steps. When you reach the text entry the Enter key press will no longer work.
    Source CP4 file:
    http://elearning.biworldwide.com/misc/Soft_Sim/Soft_Sim.zip
    Thanks for any assistance,
    Kevinhttp://elearning.biworldwide.com/misc/Soft_Sim/Soft_Sim.htm

    All apps in the recently used apps bar or dock which is accessed by pressing the home button twice are not loaded and running. Some apps like games that have been updated to do so will be in an idle state, most will be quit, and some will run in the background when leaving the app. The number of apps that can run in the background are very few and far between because there is no reason or benefit for the overwhelming number of 3rd party apps to run in the background.
    http://whenwillapple.com/blog/2010/04/19/iphone-os-4-multitasking-explained-agai n/

  • Key press elapsed time

    I'm building a shooting game. I want to record how long the player has the F key pressed in order to use that value to remove ammunition sprites from the stage.
    My application loops in frame 1.
    I have a script that subtracts the key press time from the system time on key release. I think the repeat rate of the keyboard is interfering with this as the output figures are quite random and holding the key down for longer returns a lower number.
    global gFire, gTotal, gStartTime
    on startMovie
      the keyDownScript = "handleKeydown"
      the keyUpScript = "handleKeyUp"
    end startMovie
    --Handler to fire
    on handleKeydown
      if the key = "f" then
        gStartTime = the milliseconds
      end if 
    end handleKeydown
    --Handler to stop firing
    on handleKeyUp
      if the key = "f" then
        gfire = (the milliseconds - gStartTime)/10
        gLeft = gTotal - gFire
        gTotal = gLeft -- gTotal is used to incrementally turn off sprite visibility
        put gfire -- Trace elapsed time to Message window
      end if
    end handleKeyUp
    --This sequence removes bullets from the stage\
    according to he time spent firing
    on enterFrame
      if tTotal < 900 then
        sprite(10).visible = False --this repeated for a sequence of 10 sprites
      end if
    end
    The other problem with this is that it doesn't update the stage till the key is released, so a player can defeat the logic by just holding the key down continuously (especially because the value of gFire doesn't increase as expected)
    Ideally I'd like to record the elapsed time the key is down, add it to a global and have it update the stage at the frame rate, so I guess it would have to be within a frame event handler.
    Any help would be gratefully received.

    MStewart,
    Thanks for doing that. I decided to do a little something like that and just reworked it a bit. Dropped the pause on a case structure and put the timer inside. seemed easier to do it that way for what I wanted to accomplish. The pause is going to be a good thing to have in the event that the heater needs to be turnd off and worked on for any reason, and it won't accrue time or cycles. Used a "in range and coerce" to compare minutes and seconds and then wired a 4 to 15 mA simulated signal to to the timer. All I got to do now is duplicate it 14 more times and then to work on the cDaq part of it to control relays through dig out signals, and sequence the whole thing to write a file for the analog in. Thanks alot for your help and BowenM too. like I said: you guys are awesome. Got me to thinking in other directions.
    Attachments:
    Mexico sentinal loop.vi ‏11 KB
    milliamp timer w pause function.vi ‏24 KB

  • ActiveX is stealing my key presses?

    Hi all,
    I have a fairly simple front panel with a handful of LabVIEW controls and an ActiveX container. In the ActiveX container is the Adobe Reader plugin.
    My vi works, but exhibits an odd behaviour that I presume is focus related. Once the ActiveX control is programmatically told to open and display a pdf file, it seems to steal the focus - permanently. If I select my LV string control, I can select any text in it, but key presses are all still sent to the Adobe Reader ActiveX control. If I click a few check boxes, then the string control again, it still doesn't accept my keyboard presses. The only way I've found to stop all this is to press tab, as this causes LabVIEW to move the focus away to the next control in the tab sequence. After that, all is ok until the next pdf file is read into the ActiveX control, and then I'm back at square one.
    Now I don't want to be telling my customers, "that's alright mate, just make sure you press the tab key after every pdf you generate and you'll be just fine."
    I've tried programmatically moving the focus away from the ActiveX control, and setting "SkipTabbing" to true, but this doesn't work.
    Anyone know how I can prevent this darned ActiveX control from permanently stealing my focus?
    Thoric (CLA, CLED, CTD and LabVIEW Champion)
    Solved!
    Go to Solution.

    nathand wrote:
    Unfortunately I don't have a good solution, but I can sympathize - I've had the same problem.
    Hi nathand, thanks for the sympathy 
    I've tried a few things, including navigating away from and straight back to the tab panel which houses the control to attempt to change the control focus. I've even tried simulating the keyboard TAB key press, which actually works - but only once for some annoyingly unfathomable reason! A second call to the ActiveX AdobeReader control makes it the focus again, but this time permanently. I've even tried putting the ActiveX control into a subvi that's hosted within a subpanel - no difference.
    Ultimately, like yourself, I've had to settle for a separate window, which I've called a Preview Window. Of course, putting my large ActiveX container in a separate subvi has left a dirty big empty space on my main vi front panel 
    I'm tempted to try to hide all borders around the preview window, and programmatically control its location such that it sits perfectly over the empty space within my main front panel. Of course, this means monitoring main panel window resizes and movements to maintain the correct relative locations, but it's do-able...
    I've got a new problem now - I thought about using Invoke to Get the Front Panel Image, then place this into a picture control. However, it seems the AdobeReaderActiveX control evades the LabVIEW Front Panel Image method, revealing nothing but the blank front panel colour behind the container. I can't seem to find a way around this either!
    Dam dam dam dam dam dam dam dam dam dam dam dam!!!
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

  • Getting the value of a key pressed

    This is a pretty simple question, but one which I can't seem to find the answer to...
    How do you determine which key (or keys) have been pressed with the keyboard down event?
    My app generates lists of files that match certain criteria, and I'd like the user to be able to Quicklook the files, before deciding which ones to open...
    I have it working where the user has to click a button, but I'd like to intercept the spacebar, and activate QL that way.

    To clarify, you want something like this:
    "if key pressed is "option" then (do something)" ??
    For this, I've used two things on a PPC running 10.3 and 10.4.
    One is a scripting addition from Jon's Commands, a free download. The specific command is "keys pressed." Although I don't have an Intel machine, I was trying to look ahead and contacted the developer, Jon Pugh, who replied that it was unlikely this would be updated for Intel. (It might work on PPC 10.5, don't know. But it looks like you could try it on your non-Intel machines.)
    The other is an application called "Extra Suites." This is not free, but does have quite a few interesting commands, including "keys down." The original version, released some years ago, is not for Intel (don't know about 10.5). but the developer reports that he is trying for an Intel release early this year. You can download the PPC version via Versiontracker or MacUpdate, but the developer's website (http://www.kanzu.com/) was last updated in 2004. I contacted him by a link on that site, which is how I learned of the impending Intel update (and website update, he said). He seemed to be looking for people to test the Intel version, so you might try contacting him.
    I may be wrong, but I think the "keyboard down event" that you mention is used in the opposite sense (in a System Events tell block), e.g, 'keystroke "r" using command down' which has the script "press" r, if for some reason you want that.

  • TS1277 HI. I have followed all the appropriate steps above and when I try to enter my 'Password' when asked, my keyboard doesn't work. No key press can be activated at all when trying to enter my password in 'Terminal. And I am in the 'Administrator' user

    HI.
    I am having trouble authorising my Mac Air to my Itunes account. I found a discussion explaining how to go go into 'Terminal', then adding a command. I have followed all those appropriate steps and when I try to enter my 'Password' when asked, my keyboard doesn't work. No key press can be activated at all when trying to enter my password in 'Terminal. And I am in the 'Administrator' user. Can anybody offer any suggestions?? ta

    Does the command that you're trying to enter in Terminal begin with the word 'sudo'?
    If so, your keyboard is working fine. When you type your password after a sudo command, nothing is echoed to the screen for security reasons (not even the * that are normally registered in other user interfaces). However, the program is registering what you type.
    Just type your password and press 'return' and the command will be executed (so long as you type it correctly; if you don't, you'll get an error message).

  • Can we fire key press event programmatically????

    hi there,
    is it possible in java to fire a key press event (of the associated component) programmatically??? like we can fire action event of a button by saying
    button.doClick();
    thanks in advance.
    anshu

    You can do so by using awt.Robot.keyPress(), just don't forget to do awt.Robot.keyRelease() afterwards!
    Note that it doesn't work for Applets unless you sign them, for security reasons (you don't want to go into a site and have the applet click ctrl+alt+del for you, right?)
    Cheers!
    Moti

  • Backlight key presses not detected, OPTIMUS, wiki didn't help

    I am using a Razer Blade 14" with linux-ck kernel (although I have tested in the main kernel and the issue remains).
    The keyboard brightness settings keys are not detected by X at all (using xev reports no keycodes when I press them).
    However, the driver is getting that information. And in the same type as other function keys (such as sound up/down - which are detected correctly).
    I know this because, while investigating the workings of the touchpad, I ran the razer-test script found in:
    http://fxchip.net/RazerBlade/
    (slightly modified because the device ID is 0x011D in the 14").
    It distinguishes normal key presses from Macro Keys. Function keys in this laptop are macro keys. When pressing volume down, I get the following report:
    Macro keys: Razer Extra Buttons:
      Extra key: FN
    04 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    Macro keys: 02 ea 00 00
    Macro keys: 02 00 00 00
    Macro keys: Razer Extra Buttons:
    04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    When pressing brightness up/down, I get the following report:
    04 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    Macro keys: 02 70 00 00
    Macro keys: 02 00 00 00
    Macro keys: 02 6f 00 00
    Macro keys: 02 00 00 00
    Macro keys: Razer Extra Buttons:
    04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    (note that the last part just signals that I let go of the FN key)
    My idea was to try to find the keycodes through xev and then map them manually. However, this was unsuccessful since xev reports no input when I press brightness up/down (while volume up/down works).
    This is where I'm lost - the keyboard drivers seems to just be ignoring them.
    Any help appreciated . Let me know what I can post if it's of any help!
    Cheers,
    Rodrigo
    EDIT:
    My laptop uses optimus hardware, and I'm using the integrated Intel Graphics card.
    I have tried all the methods in the wiki but none of them worked:
    https://wiki.archlinux.org/index.php/backlight#Overview
    https://wiki.archlinux.org/index.php/In … ter_resume.
    It's also worth noting that I do have control over the backlight with software - the FN+F8/F9 key bindings are the ones that are just completely ignored by the driver.
    Last edited by rgomes (2013-11-22 18:47:57)

    maxo wrote:
    Hey. If you aren't using the nvidia graphics card then this works on mine.
    Edit the /etc/X11/xorg.conf.d/20-intel.conf by adding
    Option "Backlight" "intel_backlight"
    Xorg normally automatically selects the backlight device. On mine it ued acpi_video0 instead of intel_backlight.
    Hope that helps!
    Thanks, but the challenge is, to get nvidia prop. drivers working.
    I think, I tracked the problem down to some backlight issue, probably a firmware issue with the laptop model.
    On ubunutu, ideapad backlight modules gets loaded, on arch, it uses the intel-bl. As it stands to reason, backlight settings are too dim when starting X.
    I am about to test nvidia-bl from AUR.

  • Amount of key presses a user makes over time - BPM

    Hi,
    Im working on a small program that needs to get the amount of keypresses a user makes over time.
    Basically its for calcuating the BPM a user is inputting. So a uers taps a beat for 5 seconds and the amount of tap is saved and multiplied by 12 to get the Users BPM.
    So far i have this:
    package Version1;
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.util.Timer;
    import java.util.TimerTask;
    import javax.swing.*;
    public class muTap extends JFrame implements KeyListener, ActionListener {
        JTextArea display;
         * main - the main method
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    theGUI();
         * muTap constructor
        public muTap(String name) {
            super(name);
         * theGUI - creates the gui for muTap
        public static void theGUI() {
            muTap frame = new muTap("muTap");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Set up the content pane.
            frame.addComponents();
            //Display the window.
            frame.pack();
            frame.setVisible(true);
         * adComponents - adds gui components to muTap
        public void addComponents() {
            JButton button = new JButton("Start");
            button.addActionListener(this);
            display = new JTextArea();
            display.setEditable(false);
            display.addKeyListener(this);
            JScrollPane scrollPane = new JScrollPane(display);
            scrollPane.setPreferredSize(new Dimension(375, 125));
            getContentPane().add(scrollPane, BorderLayout.PAGE_START);
            getContentPane().add(button, BorderLayout.PAGE_END);
        public void keyTyped(KeyEvent e) {
            //Do Nothing
        /** Handle the key pressed event from the text field. */
        public void keyPressed(KeyEvent e) {
            //TODO call the getBPMfromKboard() method
            taps++;
            System.out.println("Tap: " + taps);
        /** Handle the key released event from the text field. */
        public void keyReleased(KeyEvent e) {
            //Do Nothing
        /** Handle the button click. */
        public void actionPerformed(ActionEvent e) {
            //Do Nothing
            //initialCountdown(3, "Start Tapping Fool");
            countDown(3);
         * countDown - a simple countdown timer for use when getting users input.
         * @param time amount of time to count down from
         * @return      true when timer ends.
        public static int taps;
        public void countDown(final int time) {
            taps = 0;
            final Timer timer = new Timer();
            timer.scheduleAtFixedRate(new TimerTask()
                int i = time;
                public void run()  {
                    i--;
                    String s = Integer.parseInt(i); // error because of this i.
                    display.setText(s);
                    if (i < 0) {
                        timer.cancel();
                        if(time == 3)
                            display.setText("Start Tapping");
                            countDown(5);
                        else if(time == 5)
                            display.setText("Number of taps: " + taps);
                            //System.out.print("Number of taps" +taps);
            }, 0, 1000);
    }But i get errors when i try running it:
    "Exception in thread "Timer-1" java.lang.RuntimeException: Uncompilable source code"
    It doesnt seem to like me parsing int to string here:
    String s = Integer.parseInt(i); Any ideas? or if youve got suggestions on another way to do it it'd be much appreiated.
    Thanks!

    Korvanica wrote:
    It doesnt seem to like me parsing int to string here:
    String s = Integer.parseInt(i);
    Yikes, you've got that bit of code backward, there partner.
    You use Integer.parseInt to parse a String into an int, not the other way around.
    If you want to change an int to a String, do
    String s = String.valueOf(i)or you can use the various formatters out there.

  • 2 key pressing at a time?

    i am currently making a java application that require 2 key pressing a the same time with KeyPressed(KeyEvent e)but it doesnt seem to work.does any body know how to do it? thanks

    This is only supported with the "meta" keys (Control, Shift and Alt). Look at the KeyEvent for the methods to determine which meta key was pressed in combination with the other key.

  • Trap Key pressed in Forms 10g.

    Hi All,
    Have anyone trapped the keys which are pressed in Forms 10g. We have a requirement in which in a LOV Form when TAB key is pressed it should navigate to the next field and when ENTER key is pressed it should select the value from that field and get back to the field from where it was invoked.
    We had tried http://forms.pjc.bean.over-blog.com/article-15980196.html from Francois Degrelle which traps he key pressed. But that is throwing us some error in JInitiator console.
    Expecting a favorable reply from the forum users on this to .
    Thanks in advance

    Monsieur Degrell,
    is it possible to listen just to one item in the form?
    I have triedSet_Custom_Property( 'b_hilfe.bean', 1, 'INIT', 'b_help.search');in when-new-form-instance, where 'b_help.search' is the item i want to listen to,
    but the bean still listen on every item in the form.
    kind regards

  • How to get the actual key pressed in a UITextField

    Hi all , now i develop a program on iphone SDK 3.0 GM.
    I have an UITextField (created programmatically) and I have implemented the delegate as well as the UITextFieldTextDidChangeNotification so that I can react to changes in the text values.
    However, I specifically want to know when the user presses the backspace key in the UITextField when there is currently no text in the field. I can't find where I can get a specific notification of the actual key pressed, as opposed to the resulting state of the text. I'm sure there is a way to do this...help?

    I can imagine why you want to do it. I had the same problem myself and managed to circumvent it in a slightly painful way. What I did was to subclass UITextField to create a text field that always had text in it, even when it "seemed" empty. In fact the first character of the text is a space character, and then what follows is the actual text. In this way, your delegate will always get called about a backspace (when it's an attempt to delete the leading space character, obviously you should return NO in the textField: shouldChangeCharactersInRange: replacementString: method). I won't get into the details of exactly how to set everything up, like I said it is kind of elaborate and I wouldn't really recommend it unless you are desperate to have that kind of functionality.

  • How to pass the key pressed in javascript

    I'm asking this question here as I could not find the needed help elsewhere .
    I don't know how to pass the key pressed in the function on OnKeyPress event .
    I'm trying the following :
    <input type="text" name="a" onKeyPress="check();">
    I want to pass the key presses in the check function .
    How to collect the key pressed in the function check ?
    Thanks.

    As I said above, that won't work in Mozilla.
    In fact IMO Netscape/Mozilla javascript event handling has been behind IE since version 4.
    Be that as it may: here is a workaround (for Mozilla): It seems you have to assign the onkeypress event for it rather than declaring it as part of the textfield.
    Of the two textfields on this form, both work in IE, and only the first one will work properly in Mozilla. I left it in just to demonstrate the difference.
    And a couple of links for ya
    javascript forum: http://forums.webdeveloper.com/forumdisplay.php?s=&forumid=3
    Keypress events: http://www.din.or.jp/~hagi3/JavaScript/JSTips/Mozilla/Samples/KeyEvent.htm
    <html>
    <head>
    <script language="javascript" >
    <!--
    function check(evnt){
      alert("A key was pressed!");
      // IE handling
      if (window.event){
        evnt = window.event;
        alert(evnt.keyCode);
      // netscape/mozilla handling 
      else{
        alert(evnt.which);
    //-->
    </script>
    </head>
    <body >
    <form name="myform" method="post">
    Test <input type="text" name="myTest"><BR>
    Test <input type="text" name="myTest2" onKeyPress="check();"><BR>
    <script> document.myform.myTest.onkeypress = check; </script>
    </form>
    </body>
    </html>

  • Key pressed event

    I need message to be displayed when certain key pressed. Why it's not working?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class TestKey extends JPanel implements KeyListener {
         public TestKey(){
              addKeyListener(this);
         public static void main(String arg[]){
               JFrame frame = new JFrame();
                  frame.setTitle("Test my keybord, man!");
                  frame.setSize(300, 200);
                  frame.addWindowListener(new WindowAdapter() {
                    public void windowClosing(WindowEvent e) {
                      System.exit(0);
                  Container contentPane = frame.getContentPane();
                  contentPane.add(new TestKey());
                  frame.setVisible(true);
         public void keyPressed(KeyEvent ke){
              System.out.println("key pressed");
         public void keyTyped(KeyEvent ke){
              System.out.println("key typed");
         public void keyReleased(KeyEvent ke){
              System.out.println("key released");
    }

      public TestKey(){
        setFocusable(true);//<----------
        addKeyListener(this);
      }

  • Flash 9 Key press Problem

    Using Flash 9, when running an application from the IDE, key
    presses of K which are supposed to do something in my app are being
    captured by the IDE and doing something there instead.
    Didn't happen in flash 8, is there a way to disable / fix
    this.

    Plucka,
    > Using Flash 9, when running an application from the IDE,
    > key presses of K which are supposed to do something in
    > my app are being captured by the IDE and doing something
    > there instead.
    While in the SWF window you're testing in the IDE, go to
    Control >
    Disable Keyboard Shortcuts. Let me know if that does it for
    you. :)
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

Maybe you are looking for

  • What are the different type of projects

    i mean how many different type of projects are there in sap implementation.. what do you mean by, enhancement project rollout project development project support project is there any thing else other than this? please clear my doubt. points would be

  • Running software on Mac mini

    Hello, I have lot of kids software loke Kidpix,Inspiration etc, which have been working fine in Windows XP. The software manual says they are compatible with Mac too. When I try running/installing them on my mac mini, it doesnt work. Do I need to do

  • HT3775 how do you play a video with this format/title DVDSCR XViD AC3-sC0rp?

    How do you play a video with this format " DVDSCR XViD AC3-sC0rp" using quicktime?

  • Need to reset/reinstall address book (Contacts)

    The first thing I did was made a backup copy of the address book to look at the format.  I could not read it with a text editor I importing a cvs file that contain over one hundred email addresses, but I didn't notice that the email address was not s

  • Hot backup cloning in ebs r12

    HI i was doing the hot backup cloning in ebsr12. i have backed up the control files and datafiles and the trace file also. i have done the steps till copying the db and apps tier. next is 2) Create the target database control file manually Open the b