No red focus confirmation light on my 3 month old 60D. Checked customs functions, HELP

Hi guys. Title pretty much says it all. Picked my 60D up today and noticed that it will focus (I get the beep), but no focus confirmation (the red square) through the viewfinder. I have tripled checked all settings, cleared custom functions, made sure my CfN III was set to 0 or ON. I'm in one shot mode, using autofocus. PLEASE HELP! Is there a such thing as AF-OFF? I saw this mentioned elsewhere but not on my 60D menus. The photos seem sharp and in focus, just no confirmation for me on the viewfinder. Any advice??

It sounds like you've hit all the major things to check:
In AI Servo mode the AF point will never flash to confirm a focus lock like it will in One Shot mode -- AI Servo mode is continuously focusing.
C Fn. III -3 (Superimposed Display) needs to be set to '0' (on) which is the default.
The beep and the red-light are normally tied together (unless you disable the beeping).  If you get a beep, the selected AF point will normally flash at the same time.  e.g. if you were in "AI Servo" mode (instead of "One Shot" mode) then you would not get an audible beep or the red AF point flash to indicate which point is focused.  The fact that you get the beep indicates you are in the right mode and it's confirming... but you should ALSO get the red flash unless you disabled it via C Fn. III -3 set to 1.  
You could try clearing all custom functions and resetting the camera back to factory default state, but if that doesn't work, I suspect it needs service.
Tim Campbell
5D II, 5D III, 60Da

Similar Messages

  • X Through battery icon, no LED light on MagSafe, 2 month old Macbook Pro

    This all started this afternoon. I noticed a black X through the battery icon in the upper tool bar, then noticed that there was no LED light on the MagSafe charger. The fan on my computer was also constantly running. This computer is only TWO months old. Since day one I have run the battery down before re-charging. This should have properly calibrated the battery.
    Is there some simple fix for this or do I have to take time out of my life during the holiday season, trek to the mall and pray that someone at the genius bar has time to resolve this issue? Hoping there is a saint here somewhere to help me out

    MamaGG:
    Call Apple Care (800) 275-2272.
    Your computer is warranted for 1 year for Hardware and for 3 mos, I believe, for free phone tech support.
    They may have you take it to the Apple Store near you for the "genius" to work on it.
    Have you Serial Number handy. Locate it from the "Apple Icon" drop down menu on the left and side of the upper title Bar and open up "About this Mac" and open up "more info" and then "Hardware".
    They have the best support in the industry.
    Meanwhile consider getting the Apple Care Add on package for the MB Pro. It extends this Hardware coverage for 3 years and provides free Apple Care Phone Tech support for that time.
    I have had it on all my Macs which I have owned. The phone support is well worth it.
    bobg

  • Canon 6D Question about focus confirmation for manual focus lenses

    I am very interested in the 6D. I own the 5D2 and concerning IQ there won't be much difference. But the loud and shaky shutter of the 5D2, the silent mode of the 6D respectively, lower weight, better ISO and smaller size would make the 6D a better camera. If I could have wished I wanted an even more purist and smaller 6D, no video, wifi and gps, however. 
    But I have a QUESTION: Will there be a focus confirmation on the focus points like the red confirmation flash there is with the 5D2? I like to shoot eg. with my small 40mm Voigtlander Ultron manual focus lens (just an excellent lens btw) and therefore highly appreciate this focus confirmation feature. If somebody already knows the answer, this would be very nice, thanks!
    I got the impression Canon disadvantages manual focus lenses on their bodies, especially with the 5D3's new autofocus system (which is superb for autofocus lenses). Therefore I wish Canon would offer a reduced to the max fullframe body for manual focus shooters (what is a real passion for a growing number of photographers). Manual focus shooters need interchangeable focusing screens, focus confirmation on the focus point and live view. I guess Canon could be successfull with such a camera: the Canon IQ, especially the colors are excellent, the handling of a Canon is better than other brands, the overall package one gets with Canon is very good. There are so many outstandig MF lenses from Zeiss over Voigtlander to vintage lenses with adapters that are seeking the best FF body. And DSLR's are better than mirrorless cams but need to become smaller to make the size advantage of mirrorless cams irrelevant. 
    Thanks for reading, Dave. 

    The Canon 6D arrived today in Switzerland. The focus confirmation shows on the focus point and works well with Zeiss glass. We get the same focus finetuning like we had in the 5D2, what is important to align our Zeiss lenses.  Besides, this is a nicely thought out camera. Smaller than one would expect from the factsheet numbers. The silent shutter mode is great. And there was a Hasselblad / Canon 6D comparison (beautyshooting), where I could not see a difference between the two on one of these big EIZO screens. The 6D is a reasonable camera, no show off factor. Better consider the 6D instead of the 5D3 if you are not a pro. 

  • Alv list ..records with green ,red, yellow,grey lights

    Hello Experts,
    I have one requirement,
    in my alv list if the records match the recors should be displayed with GREEN light,
    similarly for other mmatches it should display with red, yellw, grey lights.
    please help me by sending the coding ,its an urgent requirement.
    thanks ,
    shaik.

    Zameera,
    *& Report ZMDEMO_ALV_04
    *&Make an Exception field ( = Traffic lights)
    *&There can be defined a column in the grid for display of traffic lights. This field is of type Char 1, and can contain the following values:
    *& 1 Red
    *& 2 Yellow
    *& 3 Green
    *&The name of the traffic light field is supplied inh the gs_layout-excp_fname used by method set_table_for_first_display.
    report zmdemo_alv_04.
    tables: sflight.
    type-pools: icon.
    types: begin of ty_sflight.
    include structure sflight.
    types: traffic_light type c,
    lights LIKE icon_xml_doc,
    lights(4),
    icon type icon-id.
    types: end of ty_sflight.
    G L O B A L I N T E R N A L T A B L E S
    data: t_sflight type standard table of ty_sflight.
    G L O B A L D A T A
    data: ok_code like sy-ucomm,
    wa_sflight type ty_sflight.
    Declare reference variables to the ALV grid and the container
    data:
    go_grid type ref to cl_gui_alv_grid,
    go_custom_container type ref to cl_gui_custom_container.
    data:
    t_fcat type lvc_t_fcat,
    wa_layout type lvc_s_layo.
    S T A R T - O F - S E L E C T I O N.
    start-of-selection.
    perform build_fieldcat.
    perform build_layout.
    set screen '100'.
    *& Module USER_COMMAND_0100 INPUT
    module user_command_0100 input.
    case ok_code.
    when 'EXIT'.
    leave to screen 0.
    endcase.
    endmodule. " USER_COMMAND_0100 INPUT
    *& Module STATUS_0100 OUTPUT
    module status_0100 output.
    Create objects
    if go_custom_container is initial.
    create object go_custom_container
    exporting container_name = 'ALV_CONTAINER'.
    create object go_grid
    exporting
    i_parent = go_custom_container.
    perform load_data_into_grid.
    endif.
    endmodule. " STATUS_0100 OUTPUT
    *& Form load_data_into_grid
    form load_data_into_grid.
    data l_light type c value '1'.
    Read data from table SFLIGHT
    select *
    from sflight
    into table t_sflight.
    Condition placing to the traffic_light Field
    LOOP AT t_sflight INTO wa_sflight.
    wa_sflight-traffic_light = l_light.
    MODIFY t_sflight FROM wa_sflight.
    IF l_light = '3'.
    l_light = '1'.
    ELSE.
    l_light = l_light + 1.
    ENDIF.
    ENDLOOP.
    Setting the Icon based on the traffic_light field value.
    LOOP AT t_sflight INTO wa_sflight.
    CASE wa_sflight-traffic_light.
    WHEN '1'.
    wa_sflight-lights = icon_red_light.
    WHEN '2'.
    wa_sflight-lights = icon_yellow_light.
    WHEN '3'.
    wa_sflight-lights = icon_green_light.
    ENDCASE.
    MODIFY t_sflight FROM wa_sflight.
    ENDLOOP.
    loop at t_sflight into wa_sflight.
    case l_light.
    when '1'.
    wa_sflight-lights = icon_red_light.
    when '2'.
    wa_sflight-lights = icon_yellow_light.
    when '3'.
    wa_sflight-lights = icon_green_light.
    endcase.
    if l_light = '3'.
    l_light = '1'.
    else.
    l_light = l_light + 1.
    endif.
    modify t_sflight from wa_sflight.
    endloop.
    Load data into the grid and display them
    call method go_grid->set_table_for_first_display
    exporting
    I_BUFFER_ACTIVE =
    I_BYPASSING_BUFFER =
    I_CONSISTENCY_CHECK =
    i_structure_name = 'SFLIGHT'
    IS_VARIANT =
    i_save = 'A'
    I_DEFAULT = 'X'
    is_layout = wa_layout
    IS_PRINT =
    IT_SPECIAL_GROUPS =
    IT_TOOLBAR_EXCLUDING =
    IT_HYPERLINK =
    IT_ALV_GRAPHICS =
    IT_EXCEPT_QINFO =
    IR_SALV_ADAPTER =
    changing
    it_outtab = t_sflight[]
    it_fieldcatalog = t_fcat
    IT_SORT =
    IT_FILTER =
    EXCEPTIONS
    INVALID_PARAMETER_COMBINATION = 1
    PROGRAM_ERROR = 2
    TOO_MANY_LINES = 3
    others = 4
    endform. " load_data_into_grid
    *& Form build_fieldcat
    text
    --> p1 text
    <-- p2 text
    form build_fieldcat .
    data: w_fcat type lvc_s_fcat.
    define macro_fcat.
    w_fcat-fieldname = &1.
    w_fcat-col_pos = &2.
    w_fcat-coltext = &3.
    append w_fcat to t_fcat.
    clear w_fcat.
    end-of-definition.
    macro_fcat 'CARRID' 1 text-c01 .
    macro_fcat 'CONNID' 2 text-c02 .
    macro_fcat 'FLDATE' 3 text-c03 .
    macro_fcat 'PRICE' 4 text-c04 .
    macro_fcat 'SEATSMAX' 5 text-c05 .
    macro_fcat 'SEATSOCC' 6 text-c06 .
    macro_fcat 'LIGHTS' 7 text-c07 .
    endform. " build_fieldcat
    *& Form build_layout
    text
    --> p1 text
    <-- p2 text
    form build_layout .
    wa_layout-cwidth_opt = 'X'.
    wa_layout-excp_fname = 'TRAFFIC_LIGHT'.
    wa_layout-excp_group = '1'.
    endform. " build_layout
    Pls. Reward if useful.

  • Focus assist light wont turn off

    This is the second time this has happene d and I am really frustrated.  I placed my new Nokia 1020 in an arm carrier while at the gym and at the end of the workout, the focus assist light was on and I could not turn it off. The pressure of the spandex sleeve must have cuased some buttons to be pressed in some odd series or something.
    To solve the problem I performed a soft reset, a hard reset, let the battery completely run out, and the light was still on.  I finally gave up and returned it to the store for a replacement.  I got a new phone and had the same problem occur today.  So it is my fault for making the same mistake twice, but I had a Nokia 920 for two years and placed in the same carrier hundreds of times with no problem.  
    Does anyone know how i can resolve this?  I really love my Nokia phone, but am going to abandon the platform if this does not get resolved easily.  My wireless carrier is a nightmare to deal with on issues like this. Any ideas would be greatly appreciated!

    Same happened to my sons Lumia. The light was on for 6 months until he finally smashed it up at a party (accidentally). And the problem was due to moisture. Happened when he was camping.

  • Lumia 1020 focus assist light wont turn off

    lumia 1020 focus assist light wont turn off. i've done a hard reset and a soft reset. ive also drained the battery but the little round light continues to be turned on .
    i checked and it looks like ive still got warranty from nokia. will they still honour the warranty if ive updates the software?

    I have the same problem, I tested everything, hard reset, soft reset, using recovery tool to back to Cyan version, still the light is ON..  what is tyhe problem, it is ridicolous that Microsoft/ Nokia do not give an answer to this problem as many users have the same problem........
    tiny_chef wrote:
    Hi, alekswithkz. Just to verify, when you say hard reset, do you mean: Settings>About>Reset? If yes, you can try to download and use the Nokia Software Recovery Tool before considering sending the phone for repair.
    http://www.nokia.com/us-en/support/software-recovery/
    Note: The link is from Nokia US. If you are in another country, feel free to download the app from your local Nokia website.
    If the issue remains, it's best to have it examined by an authorized Nokia technician. This will also determine if the repair will be covered under warranty. Warranty period starts on the date of purchase. Please bring your receipt for warranty verification.

  • Just purchased an iPhone5 and can not pair my Plantronics Voyager Pro HD.  I can't get a flashing red/blue signal light.

    Just purchased an iPhone5 and can not pair my Plantronics Voyager Pro HD.  I can't get a flashing red/blue signal light.

    Did you press and hold the power button until the LED flashes alternating red/blue - you may have to hold it for quite a few seconds.  If the LED is not flashing red/blue, then it is not in pairing mode, and I would then call Plantronics tech support as their manual has nothing else to offer (I have the same headset, but I had no problem pairing with my iPhone 5 when I upgraded from my iPhone 4).
    In the USA, call 1-866-363-2583 for Plantronics.

  • Form validation Red focus ring - good data

    In the Quick Starts - Validating data, the last example shows
    "Best Practices" for validation. I just have one issue. If you tab
    off the input to get the error indicator and then click on the box
    you get a RED focus ring around the input box. When you correct the
    data to pass validation you can see the red line of the box goes
    normal, but the focus ring stays RED. How can I get the focus ring
    to switch to the normal blue WITHOUT tabbing off the input?

    Thank you john for your reply,
    With your advice, I can validate strictly at the level of data form data items, as InfoProducer events of these types:
    Change events
    Validation events
    But How to validate at the level of my Business Components ??
    When I do
    oracle.dacf.control.NavigationManager.getNavigationManager().getFocusedControl().getComponent().transferFocus()
    The validation goes to the BC level. But when I
    oracle.dacf.control.NavigationManager.getNavigationManager().validateFocusedControl()
    I can only validate at the level of data form data items.
    So how to programatically validate a data form AND the binded BC Entity (who will maybe thrown an oracle.jbo.JboException).
    Thank you
    Xavier
    null

  • I tried to activate my new iphone 5 through itunes without a sim card, and my mac air crashed. red and green lights were both flashing but I can't get the computer to power on

    I purchased a used iphone 5 on ebay which a.) had no sim card, and b.) still had a passlock code. tried to activeat the phone via itunesbut as soon as I plugged the phone into the mac, the red and green lights began flashing the the computer then shut down, and will not power back up. Any suggestions??

    Return the defective phone to the seller, and hope that it didn't burn out your logic board. Make a "Genius" appointment at an Apple Store to find out whether it did.

  • Seagate FreeAgent Go is making a clicking sound and the light is rapidly blinking. My Macbook is no longer recognizing it. Is there any way to fix it or recover my files? The SeaAgent is less than a month old!

    Seagate FreeAgent Go is making a clicking sound and the light is rapidly blinking. My Macbook is no longer recognizing it. Is there any way to pull all the songs I have saved on it? The SeaAgent is less than a month old!
    Does anyone know how to fix this issue?
    Or at least recover the lost data?
    Thanks!

    How to fix: the drive is in warranty, so contact Seagate for a replacement.
    How to recover your data: Do you have backups? (If not, you really, really, should.)
    You can try downloading Data Rescue, which will run in trial mode and let you know if the data is recoverable. (You can then choose to purchase the full version if it works for you.) A clicking drive, though, is usually (though not always) a sign that the drive cannot be recovered.
    Matt
    Edit: fixed link.

  • 2 month old date from current date in red color only

    Hi all,
    How can I Highlight 2 month old date from current date in red color only at report level with using Alertr.
    Example:-
    Date
    3/27/2014
    4/3/2014
    3/5/2014
    4/1/2014
    3/31/2014
    5/24/2013
    2/10/2014
    4/11/2014
    12/11/2013
    9/25/2013
    1/30/2014
    2/18/2014
    2/24/2014
    1/6/2014
    3/3/2014
    Thanks
    Sam

    Hello Sam,
    are you using Universe for your report..if Yes..pls try below option.
    Create two objects in the universe
    Object1 syntax: current date() (Note:this object you can create at webi level)
    Object 2 syntax:addmonths(sysdate;-2)
    Now create a alert in webi report by using below conditions
    Day is less than Object1
    and
    Day is greater than Object2
    Please try this and let me know if any issues.
    Regards,
    Naveen D

  • My iPod touch isn't working correctly.it is displaying a white light and no matter what i try it isn't helping.tries holding the reset and power button together and tryed holding the power button in but it doesn't work. please can someone help?

    my iPod touch isn't working correctly.it is displaying a white light and no matter what i try it isn't helping.tries holding the reset and power button together and tryed holding the power button in but it doesn't work. please can someone help?

    Try the remaining items in the white-screen topic of.
    iPod touch: Hardware troubleshooting
    If not successful. let the battery fully drain and then charfe for an hour and try again.
    Frequently a white scree nis due to a hardware problem.

  • I do have a Deskjet 5740 with all lights fast blinking. Unplug and plugin again does not help.

    I do have a Deskjet 5740 with all lights fast blinking. Unplug and plugin again does not help. That's already it. I would like to know if anybody can tell me if the means the machine is completely broken. Or if this is a seldom failure situation that can be solved somehow. Please don't overlook that it's  f a s t  blinking.

    I wanted this question  one more day on the first site.

  • HT4882 hi apple it's kian ! i have mac book air with 10.7.2 version may keyboard light does'nt work with f5 and f6 ! please help me !

    hi apple it's kian ! i have mac book air with 10.7.2 version may keyboard light does'nt work with f5 and f6 ! please help me !

    Hello Kian,
    This may sound silly but if you put your hand over the isight camera, do the lights change on the keyboard?
    Ryan

  • My I pod touch 5th one month old wont charge. Its on charger for 2 days but battery does not move from red sign?

    My I pod touch 5th one month old wont charge. Its on charger for 2 days but battery does not move from red sign?

    Try the remaining items of:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

Maybe you are looking for

  • Is there any way to create smartlists with MPAA ratings?

    The only "ratings" field available seems to be the silly star rating field (which I don't use). I want to create smart playlists that use rating (like G or PG for my kids). I can't find a way to do this - does anyone know a good work-around? Thanks i

  • How to enhance Dynamic Query Object TerrSearch (Territory Management)?

    Hello Friends, In the TerrSearch dynamic query object, There are 2 fields Territory_ID and Level_ID. Now i have a requirement to Enhance the Search object using the new field called TERRITORY PATH ID. using which we can search all the entities not on

  • Day 5 with BT...

    Ok so since the 10 day training period started, I've had one disconnection. That's it. My sync is still 500Kbps lower than it was with my previous ISP meaning that I only sync enough to get 3.5mb instead of the 4mb I was getting before. Latency has b

  • Multitrack Mono to Stereo

    Hi, So I created an Audition project as mono (not knowing that was something I needed to change at creation) and have done all my editing in that project.  I want the music and effects in my project to be exported in sero but realized I cannot do so

  • How to add zero into value prefix??

    I have one reuqirement about adding zero prefix into value of Infoobject AAAA. Infoobject AAAA is the attribute of Infoobject BBBB. I need to write a ABAP code in the transfer rule of infoobject BBBB. The length of infoobject BBBB is 10. That means s