Auto off and on

Am experiencing auto off and on on my BB curve 9360 whenever am listening to music or chatting with the phone. Anyone with useful solution should pls come to my aid, need it done asap. Thanks

Hello
Welcome to the Community
May we know your device OS version and if you recently upgraded your device OS?
Thanks,
Ron
Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up Blackberry Battery Saving Tips | Follow me on Twitter

Similar Messages

  • My iPhone 4 is going auto off and auto on. Could you please help on this please

    my iPhone 4 is going auto off and auto on. Could you please help on this please

    iOS 8.1.3 is the latest version. There's nothing to download.

  • Canon 6D display language resets to chinese after auto off and indicates card full

    Just assembled my new 6D  with 24-105 mm and display comes in urecognizable language, after changing into english it reminds me that unused new memory card is full, so I reformat and seems ok... BUT when starting after auto off again the same unrecognizable language and full card !
    I have taken battery out and put in again, reset to default, changed card, and keeps doing the same.
    Any suggestions ?

    It could be the GPS in your camera IF you have been secretly kidnapped in your sleep, and placed somewhere in China, inside a cleverly detailed re-creation of your normal surroundings.  The persons responsible thought of everything BUT the GPS in your camera sensing your true location and resetting the default menu language to Mandarin.
    Investigate this, but very, very carefully.
    Scott
    Canon 6D, Canon T3i, EF 70-200mm L f/2.8 IS mk2; EF 24-105 f/4 L; EF-S 17-55mm f/2.8 IS; EF 85mm f/1.8; Sigma 35mm f/1.4 "Art"; EF 1.4x extender mk. 3; 3x Phottix Mitros+ speedlites
    Why do so many people say "fer-tographer"? Do they take "fertographs"?

  • Auto off and on ipad Air 2

    Today morning, my newly purchased ipad air 2 64GD have become stopped automatically. No power, no function. Next 2 hrs later, it become turn on automatically. I did not set up auto sleep. It may be one of the error in ipad air 2. Is there anyone who have similar problem???

    You're welcome, glad to hear you gpt your iPad sorted out. If you had a black screen while in VoiceOver thats called screen curtain. Triple tap the screen with three fingers to turn screen curtain off. Hopefully now that you restored your iPad you won't be needing to turn screen curtain or Voice Over off again.

  • My computer has been shutting off auto mystically and when I go to log in, the screen goes to lines and I can't turn it on

    My computer has been shutting off auto mystically and when I go to log in, the screen goes to lines and I can't turn it on

    Make sure that you haven't saved Uppercase and Lowercase versions of that name and password.
    Remove saved Password(s):
    * Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    * [[Remembering passwords]]

  • Would a 347 MB file be slow? Auto save and auto type turn off?

    I am doing an art inventory and add jpegs of the art. I don't resize them they range from 750k to 3MB. I guess if it is slowing the program down i should? It currently is 267 rows by about 18 columns.
    Thanks in advance.
    Oh can I turn off auto save and auto type? That may help. How do I do that?

    Done.
    Enter Scrip Editor
    paste the posted script
    File > Save > as Script  on the Desktop
    Move the script to the folder :
    Macintosh HD:Library:Scripts:Folder Action Scripts:
    CAUTION, you will be asked to enter your pasword.
    Create a folder to do the job. I named mine Normalized. I created mine on the Desktop where it's easy to reach.
    Go to :
    Macintosh HD:Library:Scripts:Folder Actions:
    Double click the alias :  Configure Folder Actions
    Below the left column, click
    navigate to select your new folder
    Below the right column, click
    select the script image - normalize400.scpt
    After that, drag and drop a picture file onto your folder.
    The original will be move in the folder Originals (isn’t it original ?)
    and a reduced copy  400 x height will be stored in the folder Normalized images.
    And now, here is the script :
    --{code}
    Image - Normalize
    This Folder Action handler is triggered whenever items are added to the attached folder.
    The script rotates the image counter-clockwise (left).
    Copyright © 2002–2007 Apple Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction.  This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours.  You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes.  If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    modified by Yvan KOENIG (VALLAURIS, France)
    2011/12/08
    This version normalize pictures so that
    (1) the greater dimension become the width one (rotate left if needed)
    (2) this greater dimension is ruled by the property maxWidth defined below.
    property maxWidth : 400
    -- set it to fit your needs
    property done_foldername : "Normalized Images"
    property originals_foldername : "Original Images"
    property newimage_extension : "jpg"
    -- the list of file types which will be processed
    -- eg: {"PICT", "JPEG", "TIFF", "GIFf"}
    property type_list : {"TIFF", "GIFf", "PNGf", "PICT", "JPEG"}
    -- since file types are optional in Mac OS X,
    -- check the name extension if there is no file type
    -- NOTE: do not use periods (.) with the items in the name extensions list
    -- eg: {"txt", "text", "jpg", "jpeg"}, NOT: {".txt", ".text", ".jpg", ".jpeg"}
    property extension_list : {"tif", "tiff", "gif", "png", "pict", "pct", "jpeg", "jpg"}
    on adding folder items to this_folder after receiving these_items
              tell application "Finder"
                        if not (exists folder done_foldername of this_folder) then
      make new folder at this_folder with properties {name:done_foldername}
                        end if
                        set the results_folder to (folder done_foldername of this_folder) as alias
                        if not (exists folder originals_foldername of this_folder) then
      make new folder at this_folder with properties {name:originals_foldername}
                                  set current view of container window of this_folder to list view
                        end if
                        set the originals_folder to folder originals_foldername of this_folder
              end tell
              try
                        repeat with i from 1 to number of items in these_items
                                  set this_item to item i of these_items
                                  set the item_info to the info for this_item
                                  if (alias of the item_info is false and the file type of the item_info is in the type_list) or (the name extension of the item_info is in the extension_list) then
                                            tell application "Finder"
      --set name of this_item to "YK#" & (text -4 thru -1 of ("0000" & i))
                                                      my resolve_conflicts(this_item, originals_folder, "")
                                                      set the new_name to my resolve_conflicts(this_item, results_folder, newimage_extension)
                                                      set the source_file to (move this_item to the originals_folder with replacing) as alias
                                            end tell
      process_item(source_file, new_name, results_folder)
                                  end if
                        end repeat
              on error error_message number error_number
                        if the error_number is not -128 then
                                  tell application "Finder"
      activate
      display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                                  end tell
                        end if
              end try
    end adding folder items to
    on resolve_conflicts(this_item, target_folder, new_extension)
              tell application "Finder"
                        set the file_name to the name of this_item
                        set file_extension to the name extension of this_item
                        if the file_extension is "" then
                                  set the trimmed_name to the file_name
                        else
                                  set the trimmed_name to text 1 thru -((length of file_extension) + 2) of the file_name
                        end if
                        if the new_extension is "" then
                                  set target_name to file_name
                                  set target_extension to file_extension
                        else
                                  set target_extension to new_extension
                                  set target_name to (the trimmed_name & "." & target_extension) as string
                        end if
                        if (exists document file target_name of target_folder) then
                                  set the name_increment to 1
                                  repeat
                                            set the new_name to (the trimmed_name & "." & (name_increment as string) & "." & target_extension) as string
                                            if not (exists document file new_name of the target_folder) then
      -- rename to conflicting file
                                                      set the name of document file target_name of the target_folder to the new_name
                                                      exit repeat
                                            else
                                                      set the name_increment to the name_increment + 1
                                            end if
                                  end repeat
                        end if
              end tell
              return the target_name
    end resolve_conflicts
    -- this sub-routine processes files
    on process_item(source_file, new_name, results_folder)
      -- NOTE that the variable this_item is a file reference in alias format
      -- FILE PROCESSING STATEMENTS GOES HERE
              try
      -- the target path is the destination folder and the new file name
                        set the target_path to ((results_folder as string) & new_name) as string
                        with timeout of 900 seconds
                                  tell application "Image Events"
      launch -- always use with Folder Actions
                                            set this_image to open file (source_file as string)
                                            set {oldW, oldH} to dimensions of this_image
                                            if oldH > oldW then
                                                      set {oldW, oldH} to {oldH, oldW}
      rotate this_image to angle 270.0
                                            end if
                                            set |échelle| to maxWidth / oldW
                                            if |échelle| < 1 then scale this_image by factor |échelle|
      save this_image as JPEG in file target_path with icon
      close this_image
                                  end tell
                        end timeout
              on error error_message
                        tell application "Finder"
      activate
      display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                        end tell
              end try
    end process_item
    --{code}
    Yvan KOENIG (VALLAURIS, France)  jeudi 8 décembre 2011 21:25:33
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Cannot turn-off Auto Correction and leave Check Spelling On

    For some reason, when you turn off Auto correction- (keyboard settings) it also turns off check spelling.
    Hope thesre is a fix for this.

    I wish I knew the answer to that and many other questions. We are all just other iPad users like you trying to help each other sort through any problems that may arise. Frankly, I would love to be able to turn off auto correct and keep spell check on just like you. The only recourse we have right now is to offer our feedback to Apple about it and you can do that by clicking on this...
    http://www.apple.com/feedback/ipad.html

  • LR4 auto adjusting and messing up my RAW files since latest update? How do I turn this off?

    HELP!
    This latest LR4 update has somehow turned my RAW files into these wretched looking too bright, too yellow/orange, messes.  I DO NOT have it set to auto import with any presets. I am not able to "reset" back to the usual dull, blah, flat looking RAW files I used to see in my LR4. 
    I also know for a fact that this is NOT how I took the images so the setting it's being imported with are not how I took the images.  I know this because I've been shooting RAW-Jpeg since I noticed this and couldn't find where to turn this setting off, and my JPEGS look NOTHING like what this is importing them as. 
    It's importing them all, regardless of session as I've imported 10 different sessions lately, and ALL of them somehow change over from the dull images RAW files typically look like when I click on them to enlarge them to have Temp 5500, Tint, -11, Exp +70, Contrast +5, highlights -9, Shadows +9, Whites -98,  Blacks -2, Clarity +19, Vib +10, Sat +19, and Orange +6 with Sharpening 81 and Noise Reduc at 4.
    What's going on??? How do I reset them back to the original RAW settings and stop LR from importing every.single.session with the settings above? I have no Presets with these settings either!

    Thank you to a fellow photog who answered my question via Facebook!  Apparently one of my assistants mistakenly made adjustments in the Libray tab to the "Saved Prest" which saved her settings as "Custom" as well as saved the Whitebalance change she made there and the Tone Control section.  I hit the "reset all" button under Tone Control and all is right with the world again! WHEW!

  • HELP: I sync my iphone ios 4 to another iphone ios5, sync was completed but after a few mins, iphone will auto restart and freezes at the home screen which I can't unlock. I have to hold the "home"   "off" button to restart the phone.

    Dear all, please hel!!
    I sync my iphone ios 4 to another iphone ios5, sync was completed but after a few secs, the iphone with the IOS 5 firmware will auto restart and freezes at the home screen which I can't unlock. It will then freeze for a few secs before repeating the restart phase again and again and again.
    To solve this issue, I have to hold the "home"  + "off" button to restart the phone. Afterwhich, it will restart the phone. However, although my stuff are still on the phone, all my sms are gone.
    Can someone please assist urgently.
    My data was transferred from another iphone 3GS which is running an IOS 4.0.1 to another 3GS running ios 5.0.1
    Is there a serious compatibility issue with both firmware?
    Please help.
    Thanks!

    Can't I just set up Exchange as one of my calendars in ical?
    Only if you're running Snow Leopard and your employer will allow access (different than iPhone/mobile device access, so most likely not), but not needed - keep reading.
    Is it really true that I have to choose between syncing Exchange with work server OR syncing iCal with personal Macbook?
    No. It was true, but with the v3.0 software that changed - you can now sync your Exchange contacts and calendar over the air, and your Address Book and iCal via iTunes over the docking cable.
    What is the best work around for this?
    None needed. When you set up the exchange account, and choose to turn on syncing of contacts and calendars, you will be prompted to remove all other data, or keep it on the iPhone. Choose the keep option. Note that in that case, your personal data will not be uploaded to the Exchange server - the iPhone keeps them separate (although you can choose to view them in a merged fashion).
    I have this set up on my phone (Exchange calendar along side personal and other calendars from iCal). Same for contacts. Works great.

  • Auto Color Effect flickers off and on

    I have just tried using auto color under the video adjust effects and the effect seems to flicker off and on in all of my clips. Anyone else had this problem
    or is it my computer? I have a new computer with 12 GB of RAM.
    Thanks
    Doug

    Hunt,
    I think that explains it. Thanks a lot!!
    Doug
    In a message dated 9/22/2010 6:49:14 P.M. Eastern Daylight Time, 
    [email protected] writes:
    Doug,
    This is the rub on almost all of the "Auto"  Effects. Unless the scene is
    absolutely constant in lighting, and needing the  same exact correction, one
    gets a "pulsing," "strobing" or  "flicker."
    I strongly recommend using the Fast Color Corrector  (or one of the other
    non-Auto Effects). Same for Auto Levels,  etc.
    Good  luck,
    Hunt

  • How do I turn auto-correct off and still have a spell check?

    How do I turn auto-correct off and still have a spell check?

    I do not believe this.. you can not disable auto correct without disabling the spell checker.. I am struck dumb by this.. I recently bought a mac for the first time.. ive always used windows.. there are more thngs like this than i expected.. I actually find this so ignorant I am lost for words.. this auto correct is a nightmare for me.. and has already caused me a lot of trouble because I have sent emails where words have been changed and i didnt notice and I have unknowingly insulted people.. i use a regular spell checker quite often but apparently I simply have no choice with safari.. oh well I am going to have to find another browser then.. goodbye safari!.. I also use a lot of shortened words and names etc etc.. like for eg I used the shortened word for problems "probs" and it changes it to "probe" and then i go back and change it back to WHAT I WANT TO SAY and it changes it AGAIN!!!!
    Does anyone else feel like this is yet another example of how, more and more, we are being treated like morons?
    Ok I'll try to stop ranting.. the real point is it should be possible to have a spell checker without auto correct..

  • Zen MIcro:Auto power off and USB charg

    i wanna know whether the zen micro has an auto off feature. also, can it be charged via USB?Thanx

    When you say auto off, do you mean that it turns off when it's idle? If so, then yes, it does. Otherwise post up more detail and I'm sure someone can answer your question.
    The Zen Micro can charge over USB aswell, but remember this will take longer than with the power adapter.
    Cat

  • My ipone6plus is auto power off and cannot open?

    Iphone 6 plus auto power off and cannot power on about 1 hours ago?
    Please answer me why?
    I had been try to pressed the home button and lock buttom so many time but cannot on.

    won't appear the any signature from screen too.

  • Z10 has auto on off and Bedside mode?

    Hi,
    I was looking for some option that are available with older BB, like Auto On and Off times, also the
    bedside mode.
    Where can I find the full options list?
    Thanks,
    Eli Keren
    Solved!
    Go to Solution.

    According to Z10 manual auto on/off is not there.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • How to turn the elements auto analyzer and dynamic link manager off?

    While I was installign the trial version of photoshop cc, a question popped up asking me to turn elements auto analyzer and dynamic link manager off, but I couldn't find them. Please help me

    Terminate the processes in Task Manager/ Activity Monitor.
    Mylenium

Maybe you are looking for