How can I stop my camera from taking pictures every 15 seconds?

I am so frustrated!  I have a Droid X which has worked well for about a year.  Just today It has just gone crazy taking pictures.  One picture after another.  Every fifteen seconds or so, regardless of what I am trying to do---work on the internet, dial my phone, etc.  I can barely shut down.  I've taken out the card and the battery and have tried to change any camera and general settings that I can find.  Do you have any idea how I can get my Droid to stop?  Any suggestions at all would be appreciated.  THANKS.

You can't. What kind of USB device is that ?

Similar Messages

  • How can I stop my boss from taking away my Mac?

    Dear Apple community, 
    My name is Khilila and my boss wants our creative office to switch to PCs for our next upgrade. I'm been a graphic designer for close to 10 years and I am completely heartbroken.  Is there anyone out there that's experienced the same thing?  I'd like to create a manifesto of sorts but I'd love to hear from some fellow Apple professionals so I know I'm not crazy.
    Thank you,
    Khilila
    Canada

    What are you using now? an iMac has limited upgrade options and shorter shelf life.
    You can run Windows 7 on any PC and have your picks of graphic setups, SLI, CF, higher clocked RAM and cpu.
    A boss gets to decide. And for same $3,000 per seat plus software, cross-platform license....
    You can run Windows on your Mac but... there is total lack of real fan + thermal control so that does not work well in long run.
    And your boss probably doesn't want to wait on Apple or buy into higher cost proprietary technology or 3 yr old design.
    Haswell PCs? Unlikely they want Xeons.
    Software? good use of cores? probably Windows.
    Best Windows laptop: MacBook Pro 13" (but heat again is the Achilles heel)
    Security: Mac
    Hardware support and reliablity: Mac
    Dealing with firmware updates: Apple tends to issue very few, usually one more after a model ships, PC: tend to see much more that you need to deal with and can be PITA and necessary, esp. with motherboard and processor support with new line.
    Make a spreadsheet and list all the things you can come up with and see for yourself.
    I don't think you'll win over your boss and how does it make you look? team player? reliable? dispensable?

  • How can I stop a JFrame from taking the focus?

    Hi,
    Please see my original post in the Java Event Handling forum:
    http://forum.java.sun.com/thread.jsp?forum=424&thread=565034&tstart=0&trange=15
    Sorry, for cross-posting but its been nearly a week and I have had no replies. This forum looks a bit more active.
    - David

    try this...
    JFrame frame = new JFrame();
    frame.setFocusableWindowState(false);setFocusableWindowState
    public void setFocusableWindowState(boolean focusableWindowState)Sets whether this Window can become the focused Window if it meets the other requirements outlined in isFocusableWindow. If this Window's focusable Window state is set to false, then isFocusableWindow will return false. If this Window's focusable Window state is set to true, then isFocusableWindow may return true or false depending upon the other requirements which must be met in order for a Window to be focusable.
    Setting a Window's focusability state to false is the standard mechanism for an application to identify to the AWT a Window which will be used as a floating palette or toolbar, and thus should be a non-focusable Window.
    Parameters:
    focusableWindowState - whether this Window can be the focused Window

  • How can I stop Acrobat Reader from popping up every time I close Firefox?

    Every time I close Firefox, after my browser window closes, Acrobat Reader pops up. Is there a way to stop this from happening. I already went into the "Add-Ons" and disabled it, but it continues to occur.

    It doesn't :-) I was desperate, there is nowhere on the Internet giving the information on how to block pop-ups on just IE (not all of Microsoft) But thank you anyway. :-) FYI I installed IE 9 then deleted IE all together.

  • All my contact are being copied to my friend's iphone and i also am getting his contacts on my phone,when i delete a contact it also deletes it from his phone,we are sharing the same apple ID. How can i stop our contacts from being shared between us

    All my contact are being copied to my friend's iphone and i also am getting his contacts on my phone,when i delete a contact it also deletes it from his phone,we are sharing the same apple ID. How can i stop our contacts from being shared between us

    Everything that you have checked in your icloud settings will be shared between devices using the same Apple ID.  If you don't want icloud to share that information, then simply turn off that process under settings > icloud

  • How can I stop my iPhone from synching my contacts and groups lists twice?

    How can I stop my iPhone from synching my contacts and groups lists twice....I am using iCloud but am not sure how correct this duplication.

    Go into Settings>Mail, Contacts, Calendars. Is this happening at the bottom in the signature section, or in the header of the mail where your email address is? If it is the signature, then go to the Signature area of the Mail settings. If this is in the header, then go to the account in question and edit your account information to include your name instead of Johnny.

  • When I record an audio track, there is a waveform. When I stop recording, the waveform disappears and becomes a straight line. It also disappears from the track edit window. But the sound is there. How can I stop the waveform from disappearing?

    When I record an audio track using Logic Pro X, there is a visible waveform which appears as I record. When I stop recording, the waveform disappears and becomes a straight line. It also disappears from the track edit window. But the sound is still there. How can I stop the waveform from disappearing? And can I do something to view it after it has disappeared? Anyone know the anser?

    In Logic:
    Preferences/Audio Set Recording Delay to 0 <zero>
    This should always be set to zero unless a specific set of circumstances exist and you're audio drivers do not report position correctly.
    On occasion, usually when importing a Logic 9 project, Logic-X randomly changes this to a negative/positive number.  It's actually a bug in Logic, as it should always display the waveform.

  • How can I stop a JFrame from closing when clicking the close button.

    I need to display a dialog when a user attempts to close my app, giving them the option to close, minimize or cancel. How can I stop the form from closing after the user makes his selection? I have the folllowing code, but my form still closes after selecting an option:
    private void formWindowClosing(java.awt.event.WindowEvent evt) {                                  
            //An array of Strings to be used a buttons in a JOptionDialog
            String[] options = {"Close", "Minimize", "Cancel"};
            //Determines what the user wants to do
            int result = JOptionPane.showOptionDialog(null, "What to you want to do?  Close the application, minimize or cancel?", "Please select an option...", 0, JOptionPane.QUESTION_MESSAGE, null, options, options[0]);
           //Determines what to do, depending on the user's choice
            if (result == 0) {
                //Close the application
                System.exit(0);
            } else if (result == 1) {
                //Minimize the application
                this.setState(Frame.ICONIFIED);
        }Any help would be much appreciated!

    import java.awt.event.*;
    import javax.swing.*;
    public class test extends JFrame {
         public static void main( String[] args ) {
              new test();
         public test() {
              setSize( 200, 200 );
              //the next line makes the JFrame not close
              setDefaultCloseOperation( JFrame.DO_NOTHING_ON_CLOSE );
              //now add a listener that does the trick
              addWindowListener( new WindowAdapter() {
                        public void windowClosing( WindowEvent e ) {
                             //ask the user and do whatever you wish
              setVisible( true );
    }

  • ICal keeps sending email notifications from all agenda items from the last 2 years. After laptop start up this action is repeated every hour. How can I stop these 300 emails coming in every hour?

    iCal keeps sending email notifications of all agenda items from the last 2 years (then I bought my laptop). After laptop start up this action is repeated every hour. How can I stop these >300 emails coming in every hour?

    Hi,
    We have rolled out a fix for this issue.
    Please log off and log back in to your machine and the issue should be resolved automatically. In case that does not work, please manually run the msi installer posted here (may require reboot).
    For details, please refer to the KB article here: Multiple RunOnce keys created 11.0.10 and 10.1.13 Acrobat | Reader
    Please let us know if you still face any issues.
    Thanks,
    Ashu Mittal

  • How can i stop my phone from vibrating in my ear when i am on the call?

    How can i stop my phone from vibrating in my ear when i am on the call? I usually keeps my phone on vibration mode so i get notified when there is a new mail or message? However, when i am on the call, then also, it vibrates in my ear everytime a mail comes. Very irritating. I use my business phone and mails keep coming every 2-5 mins.
    Please help.

    very impractical . specially when you call A LOT and receive notifications constantly!

  • How can i stop internet media from flooding elements 6?

    how can I stop elements 6 from constantly importing internet photos and flooding my memory?

    PSE isn't importing photos off the internet, but it could be importing photos from your hard drive that are being placed there as you browse the internet.
    It's likely that you've told PSE to import all new photos on your hard drive using the Watched Folders mechanism.
    In the Organizer, go to File > Watch Folders...
    See the list of folders PSE is currently watching.
    Check the setting near the bottom of the dialog as to what PSE should do when it finds new images in the folders it is watching.
    Make any necessary changes to have it do what you want it to do.
    Cheers
    Bob

  • Hi, how can I stop my screen from freezing up.Its acts like a scratch card, I use the mouse cursor to rub away to find the password box?

    HI,how can I stop my screen from freezing, It acts like a scratch card,I run over it with the mouse to scratch away at the grey screen to find the password box
    underneath?

    OS X: Login window partially appears, cursor movement redraws screen

  • How can i stop an email from being sent?  i cannot find an outbox in outlook

    How can I stop an email from being sent.  I cannot find an outbox in Outlook

    Outlook is a Microsoft product, I'd suggest posting on the Office for Mac Product Forums.

  • How can I stop iPhone 5s from blinking apple logo

    how can I stop iPhone 5s from blinking apple logo

    Hello tigersrock,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/ts3281
    Have a nice day,
    Mario

  • How can i remote iphone camera from macbook?

    I am trying set up photoshoot using iphone and macbook. How can i remote iphone camera from macbook? Thanks

    Not possible.

Maybe you are looking for

  • Xorg, Catalyst, used the DDX,ForceXXA fix

    Okay, First time using Arch Linux (atleast on a real machine, i tested it and got it 'up and running' in a VM. Couple things that have to be said 1) Great idea behind the distro 2) Installer def made me learn my linux sh*t (or relearn as it came up t

  • Rented HD movie on ATV in other language than English?

    I just tried out my ATV tonight with my first HD rental (HellBoy II...) and although the audio language setting was set to French, the audio was in English. I guess that the only audio available now is English and hope that it will come in a near fut

  • Bind Variables in ref cursor

    Version details BANNER Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi PL/SQL Release 10.2.0.4.0 - Production CORE    10.2.0.4.0      Production TNS for Solaris: Version 10.2.0.4.0 - Production NLSRTL Version 10.2.0.4.0 - ProductionB

  • Requirements to work on Web DynPro for ABAP

    hi all, what is it required to work on Web DynPro for ABAP. i have got ECC 5.0 installed in my system but i dont find "WebDynpro Comp/Intf" under the "Repository Browser" in SE80(ABAP WorkBech). How should i proceed further?? waiting for replies... R

  • Create Labview application to call other installers

    I am trying to create a labview application using LabView 7.0 so that it can call several other installation applications sequentially.