Pixel Grid - not appearing

On my mac I have a pixel grid when I zoom in over 500%, but on my PC (both using CS5) I dont have the option of pixel grid under view>show.
Does this have something to do with the video card in my PC & selecting 'open GL' under edit.preferences?
Thanks

Up-to-date acording to Windows? go to nvidia.com and make sure that you really have the latest driver available. If it is then try installing some older drivers. Also, if you have the 64bit version of Windows XP then better to just give up as that operating system isn't supported.

Similar Messages

  • Pixel Grid is not visible

    I am using Adobe Illustrator CC version 17.0.1 x64 on Windows 8.1.
    In Edit > Preferences > Guides & Grid I have the Show Pixel Grid option checked but when zoomed in over 600% the pixel grid does not appear. Am I missing something?

    In addition to the preference setting you have to turn on Pixel Preview in the View menu.

  • Reg : ALV Grid Refresh - Output not appearing

    Hi All ,
    Am calling a screen 100 at 3 different places.
    Though i use refresh_table_display , The value in the output table, say i_final changes, but while displaying the output , the whole screen is blank , even the container is not appearing in the output .
    Can you please help me with your inputs .
    Regards,
    Chitra

    yes it is good ...see the example...for your requirement..
    REPORT yztest .
    TYPE-POOLS: slis.
    Tables
    TABLES: mara.
    TYPES: BEGIN OF ty_name,
           name  TYPE char10,
           age   TYPE i,
           END OF ty_name.
    TYPES: BEGIN OF ty_marks,
           sub1   TYPE i,
           sub2   TYPE i,
           total  TYPE  i,
           END OF ty_marks.
    TYPES: BEGIN OF ty_phone,
           phnum TYPE char10,
           END  OF ty_phone.
    TYPES: BEGIN OF ty_addr,
           address TYPE char20,
           END  OF ty_addr .
    Output internal table
    DATA: itab TYPE TABLE OF ty_name,
          wa   TYPE ty_name,
          itab1 TYPE TABLE OF ty_marks,
          wa1  TYPE ty_marks,
          itab2 TYPE TABLE OF ty_phone,
          wa2  TYPE ty_phone,
          itab3 TYPE TABLE OF ty_addr,
          wa3  TYPE ty_addr.
    ALV Grid
    DATA: r_grid  TYPE REF TO cl_gui_alv_grid,
          r_grid1 TYPE REF TO cl_gui_alv_grid,
          r_grid2  TYPE REF TO cl_gui_alv_grid,
          r_grid3  TYPE REF TO cl_gui_alv_grid,
          g_dock TYPE REF TO cl_gui_docking_container,
          g_dock1 TYPE REF TO cl_gui_docking_container,
          g_dock2 TYPE REF TO cl_gui_docking_container,
          g_dock3 TYPE REF TO cl_gui_docking_container,
          g_dock4 TYPE REF TO cl_gui_docking_container,
          it_fieldcat  TYPE lvc_t_fcat,
          it_fieldcat1 TYPE lvc_t_fcat,
          it_fieldcat2 TYPE lvc_t_fcat,
          it_fieldcat3 TYPE lvc_t_fcat,
          wa_fieldcat TYPE lvc_s_fcat.
    DATA picture TYPE REF TO cl_gui_picture.
    DATA url(255).
    CLEAR url.
    DATA  init.
    START-OF-SELECTION.
      wa-name = 'test01'.
      wa-age = '1'.
      APPEND wa TO itab.
      wa-name = 'test02'.
      wa-age = '2'.
      APPEND wa TO itab.
      wa-name = 'test03'.
      wa-age = '3'.
      APPEND wa TO itab.
      wa1-sub1 = '11'.
      wa1-sub2 = '22'.
      wa1-total = wa1-sub1 + wa1-sub2.
      APPEND wa1 TO itab1.
      wa1-sub1 = '22'.
      wa1-sub2 = '33'.
      wa1-total = wa1-sub1 + wa1-sub2.
      APPEND wa1 TO itab1.
      wa2-phnum = '99999999999'.
      APPEND wa2 TO itab2.
      wa2-phnum = '888888888888'.
      APPEND wa2 TO itab2.
      wa2-phnum = '777777777777'.
      APPEND wa2 TO itab2.
      wa3-address = 'HItech City'.
      APPEND wa3 TO itab3.
      wa3-address = 'Secunderabad'.
      APPEND wa3 TO itab3.
      wa3-address = 'Hyderabad'.
      APPEND wa3 TO itab3.
      PERFORM display_image.
      CALL SCREEN 100.
    *& Module STATUS_0100 OUTPUT
    text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'LISTOUT1'.
      SET TITLEBAR 'LIST1'.
      wa_fieldcat-fieldname = 'NAME'.
      wa_fieldcat-seltext   = 'NAME OF THE STUDENT'.
      wa_fieldcat-coltext =   'NAME OF THE STUDENT'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat.
      wa_fieldcat-fieldname = 'AGE'.
      wa_fieldcat-seltext   = 'AGE OF THE STUDENT'.
      wa_fieldcat-coltext =    'AGE OF THE STUDENT'.
      APPEND wa_fieldcat TO it_fieldcat.
      wa_fieldcat-fieldname = 'SUB1'.
      wa_fieldcat-seltext   = 'SUBJECT1'.
      wa_fieldcat-coltext =    'SUBJECT1'.
      APPEND wa_fieldcat TO it_fieldcat1.
      wa_fieldcat-fieldname = 'SUB2'.
      wa_fieldcat-seltext   = 'SUBJECT2'.
      wa_fieldcat-coltext =    'SUBJECT2'.
      APPEND wa_fieldcat TO it_fieldcat1.
      wa_fieldcat-fieldname = 'TOTAL'.
      wa_fieldcat-seltext   = 'TOTAL'.
      wa_fieldcat-coltext =    'TOTAL'.
      APPEND wa_fieldcat TO it_fieldcat1.
      wa_fieldcat-fieldname = 'PHNUM'.
      wa_fieldcat-seltext   = 'PHONE NO'.
      wa_fieldcat-coltext =    'PHONE NO'.
      APPEND wa_fieldcat TO it_fieldcat2.
      wa_fieldcat-fieldname = 'ADDRESS'.
      wa_fieldcat-seltext   = 'ADDRESS'.
      wa_fieldcat-coltext =    'ADDRESS'.
      APPEND wa_fieldcat TO it_fieldcat3.
      IF g_dock IS INITIAL.
        CREATE OBJECT g_dock
                      EXPORTING
                      repid     = sy-repid
                      dynnr     = sy-dynnr
                      side      = g_dock->dock_at_left
                      extension = 300.
        CREATE OBJECT r_grid
                  EXPORTING
                  i_parent = g_dock.
      ENDIF.
      IF g_dock1 IS INITIAL.
        CREATE OBJECT g_dock1
                      EXPORTING
                      repid     = sy-repid
                      dynnr     = sy-dynnr
                      side      = g_dock1->dock_at_right
                      extension = 300.
        CREATE OBJECT r_grid1
                  EXPORTING
                  i_parent = g_dock1.
      ENDIF.
      IF g_dock2 IS INITIAL.
        CREATE OBJECT g_dock2
                      EXPORTING
                      repid     = sy-repid
                      dynnr     = sy-dynnr
                      side      = g_dock2->dock_at_top
                      extension = 100.
        CREATE OBJECT r_grid2
                  EXPORTING
                  i_parent = g_dock2.
        IF g_dock3 IS INITIAL.
          CREATE OBJECT g_dock3
                        EXPORTING
                        repid     = sy-repid
                        dynnr     = sy-dynnr
                        side      = g_dock3->dock_at_top
                        extension = 100.
          CREATE OBJECT r_grid3
                    EXPORTING
                    i_parent = g_dock3.
        ENDIF.
        IF NOT itab[] IS INITIAL.
          CALL METHOD r_grid->set_table_for_first_display
            CHANGING
              it_outtab       = itab
              it_fieldcatalog = it_fieldcat.
        ENDIF.
        IF NOT itab1[] IS INITIAL.
          CALL METHOD r_grid1->set_table_for_first_display
            CHANGING
              it_outtab       = itab1
              it_fieldcatalog = it_fieldcat1.
        ENDIF.
        IF NOT itab2[] IS INITIAL.
          CALL METHOD r_grid2->set_table_for_first_display
            CHANGING
              it_outtab       = itab2
              it_fieldcatalog = it_fieldcat2.
        ENDIF.
        IF NOT itab3[] IS INITIAL.
          CALL METHOD r_grid3->set_table_for_first_display
            CHANGING
              it_outtab       = itab3
              it_fieldcatalog = it_fieldcat3.
        ENDIF.
    if   g_dock4 is initial.
        CREATE OBJECT g_dock4
                      EXPORTING
                      repid     = sy-repid
                      dynnr     = sy-dynnr
                      side      = g_dock4->dock_at_bottom
                      extension = 100.
        CREATE OBJECT picture
                          EXPORTING parent = g_dock4.
        CALL METHOD picture->load_picture_from_url
          EXPORTING
            url = url.
        init = 'X'.
    endif.
      ENDIF.
    ENDMODULE. " STATUS_0100 OUTPUT
    *& Module USER_COMMAND_0100 INPUT
    text
    MODULE user_command_0100 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    *&      Form  display_image
    FORM display_image .
      DATA query_table LIKE w3query OCCURS 1 WITH HEADER LINE.
      DATA html_table LIKE w3html OCCURS 1.
      DATA return_code LIKE  w3param-ret_code.
      DATA content_type LIKE  w3param-cont_type.
      DATA content_length LIKE  w3param-cont_len.
      DATA pic_data LIKE w3mime OCCURS 0.
      DATA pic_size TYPE i.
      REFRESH query_table.
      query_table-name = '_OBJECT_ID'.
      query_table-value = 'ENJOYSAP_LOGO'.
      APPEND query_table.
      CALL FUNCTION 'WWW_GET_MIME_OBJECT'
        TABLES
          query_string        = query_table
          html                = html_table
          mime                = pic_data
        CHANGING
          return_code         = return_code
          content_type        = content_type
          content_length      = content_length
        EXCEPTIONS
          object_not_found    = 1
          parameter_not_found = 2
          OTHERS              = 3.
      IF sy-subrc = 0.
        pic_size = content_length.
      ENDIF.
      CALL FUNCTION 'DP_CREATE_URL'
        EXPORTING
          type     = 'image'
          subtype  = cndp_sap_tab_unknown
          size     = pic_size
          lifetime = cndp_lifetime_transaction
        TABLES
          data     = pic_data
        CHANGING
          url      = url
        EXCEPTIONS
          OTHERS   = 1.
    ENDFORM.                    " display_image
    *&      Module  EXIT  INPUT
          text
    MODULE exit INPUT.
      CALL METHOD g_dock->free.
      CALL METHOD g_dock1->free.
      CALL METHOD g_dock2->free.
      CALL METHOD g_dock3->free.
    ENDMODULE.                 " EXIT  INPUT

  • Artwork does not appear on the grid or coverflow.

    Artwork does not appear on the grid or coverflow for several albums but appears in the artwork viewer when you play a song from the album.  How do I get the artwork to appear?  The artwork seems to be missing for albums that I believe were on a playlist that was selected when the external hard drive storing the music was not connected to the laptop.

    Went to the apple store.  They gave me an easy way to copy existing artwork to the first track as only the first track was apparently missing artwork on the affected albums.  When I got home I found an easier way to restore the artwork simply by selecting "Get Info" for one of the songs on the album.

  • Album artwork does not appear in album list or grid

    I added album artwork (did get info then copy and paste) and it shows up fine in cover flow but does not appear in album list or grid view.
    What am I doing wrong?  Artwork files were scanned from album covers that I have.

    Your album artwork cache may be corrupt. Provided most, if not all, of your artwork is embedded you can simply delete the Album Artwork folder that you will find inside your main iTunes folder and then scroll slowly through the library in Grid/Albums mode to rebuild it. Any images that were "downloaded" rather than embedded will need to be reacquired.
    Threre are separate folders for the downloaded and cached images, but I've always gone for a complete rebuild so I don't know it would work to delete just the cached folder.
    tt2

  • Photos downloaded appear only "showing: added by (photos only)" - do not appear in albums or grid. Why?

    I downloaded 150 photos today but they only appear in  "showing: added by (photos only)" - do not appear in albums or grid. Why?

    Hehe, that is what i experienced using the MobileMe trial.
    Ok, I will dig deep into my computer software boxes and look for the discs that came with the computer.
    Thank you for all your help, it is much appreciated

  • Grid Lines not appearing in Query

    Hi all,
    I have a query in BI 7.0.  The problem is the Grid lines & the Formats are not appearing in the query i.e the row & column lines are not appearing.  These were there before 2 weeks but now something has happened and it got changed.  So, if i create a workbook from this query, the workbook also reflect the same format.  Even if i make the format changes through excel functions, i could only save it as a workbook and it wont reflect in the query.
    We are not able to identify exactly why this problem came.  It doesnt have anything to do with the Package or patch.  This problem occurs only for one query & all the other query formats are working fine.  I compared the error free queries with the problem query but everything seems to be the same.
    Please help me in solving this problem.
    Thanks,
    Murali

    Hi Everyone,
    The issue is solved.  The option "Adjust Formatting after Refreshing" in the Query Properties was unchecked.  I checked that & the problem is solved.
    Thanks,
    Murali

  • The configure database page not appear in grid control

    hi
    when i try to configure a database target in grid control appear a error . i know that the nslookup not working correctly because these machines not adding to dns server
    it's possible communication between oms and agent whithout an dns server, only adding lines in the /etc/hosts
    thanks

    Which self Service function you are using to change the assignment ?
    Their are two API to update asg values. Try to apply user hook on both of them and retry ur scenario.

  • Symbol isolation mode, the pixel grid is not aligned to the ruler.

    If you create a symbol that is pixel perfect, exit out of the symbol and go back in, the pixels bleed into each other because the pixel grid is not aligned correctly. Instead it is aligned to the global document grid which the symbol content is not placed in. It makes no sense to align the pixel grid to the global coordinates when the content by definition is not present in it.
    This makes it impossible to use symbols to edit pixel perfect objects because any editing other than the original creation does not display pixels but pixel bleeds.
    This is a valid bug in Illustrator CS6. Please specify:
    1. Do you understand what I am specifying? If you do not I will provide images as I wish to resolve this functionality.
    2. Please specify if it has been fixed in Illustrator CC. I do not have an available Win7 installation to test CC but if it is I will acquire one.

    Thank you submitted. Input from Adobe's developers or developer relations representatives on this forum to expedite a solution to this bug would be greatly appreciated. As Adobe's products are now on a subscription one would hope it's product roadmap would accelerate with regards to Illustrator considering the necessity of Vector graphics in a market with multiple largely varying resolutions.
    If you create a symbol that is pixel perfect, exit out of the symbol and go into Symbol edit mode (from the Symbol Panel or when a symbol's dimensions have been modified) the Pixel Preview grid is not aligned correctly. The Pixel Preview grid is nonsensically aligned to the document's coordinates. It makes no sense to align the Pixel Preview grid to the document's coordinates in symbol edit mode as it causes an inability to see the Pixel Preview without bleeding.
    This makes it impossible to use symbols to edit pixel perfect objects because any editing other than the original creation does not display pixels but pixel bleeds.
    Again the fundamental issue is that: There is no reason to align the Symbol Edit mode to the global Pixel Preview grid. The Pixel Preview grid should align to the Symbol coordinates.
    http://i.imgur.com/KB2CdEx.jpg
    The screenshot is in Pixel Preview. Moving the contents of the Symbol in Edit mode from it's correct position to temporarily align to the Preview Pixel grid is incorrect:
    1. Because you just moved the correctly placed contents. The Symbol placed in it's parent to prevent pixel bleeding is now incorrect.
    2. On a subsequent edit it would be misaligned because as specified, Illustrator aligns the contents of Symbol editing mode nonsensically to the global Pixel Preview grid.
    With regards to Align to Pixel grid
    1. This is a bug regardless of improvements to Align to Pixel to facilitate an acceptable workflow.
    2. Align to pixel grid is not an acceptable workflow:
    a. Not possible to place path vertices in the middle of a pixel to facilitate pixel strokes.
    b. Mangles rounded corners.
    d. It is not prudent to rely on an arbitrary algorithm with regards to forward or backward compatability in creating anything, considering the possibility of mangling and/or changed behavior as specified above.
    The workflow to create pixel perfect UI elements is to position vertices absolutetly.

  • Align New objects to pixel grid does not seem to work - Windows 7

    Here is another issue I've been struggling with for a while.
    Scenario:
    1. Working on a web UI, so want to use pixel grid, which is handy. So I create a new document, web profile and making sure 'Align New Objects to Pixel Grid' is selected:
    2. Yay! We have a nice and clean new document, cannot wait to start drawing rectangles! But let's double-check if everything is hunky dory:
    3. Right! Let's go and start making rectangles!
    4. And NOOOOOOOO!!!! As you can see in the image above, the rectangle is not aligned to pixel grid (look at the values), and it's "Align to pixel grid" option is not selected. Let's triple-check our options:
    So yeah, there you go. It's all lies! You have to check the check box AFTER you create the shapes FOR EACH SHAPE!
    Illustrator why you do this?! What am I missing here?!
    Windows 7 Ultimate
    AI 18.1.1 (64-bit)

    kaanungur,
    I am afraid you have come across the Live Rectangle bug sorry feature where it refuses to align to the Pixel Grid.
    To get round it in each case, it is possible to Expand the Live Rectangles to get normal old fashioned rectangles, or to Pathfinder>Unite, or to use the Scale Tool or the Free Transform Tool.
    A more permanent way round that is to create normal old fashioned rectangles, after running the free script created by Pawel, see this thread with download link:
    https://forums.adobe.com/thread/1587587

  • Bug? Illustrator CC 2014 and Pixel Grid settings not working.

    Hello,
    I've noticed that in Illustrator CC '14 when I go to make a new web document with "Align New Objects to Pixel Grid" selected, as I'm working in the document none of the new shapes I draw actually align to the grid without me manually going into the Transform panel and selecting the option for each new shape.
    Is there a new setting in '14 I'm missing? Obviously it's not a completely crippling behavior as there's a work around, but it is still quite annoying and slows my work flow down. Any help or insight is appreciated.

    THIS IS A DAMMED ANNOYING CHOICE FOR BEHAVIOR, ADOBE.
    My current position entails building lots of wireframes, and working amongst several other designers (9999 times out of 10000 aren't going to care or figure out alignments and "expand rectangle" every time they make a box.) Even if I actually manage to build a file where things adhere to a world of pixels, it will be ruined the moment I hand it to someone else.
    There should be – ANYWHERE, I don't care if it's in Preferences or View, or Tool panel – an option which basically indicates "I'M BUILDING THIS FOR A SCREEN MADE OF PIXELS, SO DON'T EVER PUT SOMETHING AT A FRACTION OF A PIXEL."
    Wasn't there a perfectly good application we're supposed to transition away from, something called Fireworks?

  • Pixel grid does not line up with rulers

    AICS 5.5 - I'm working in a doc with measurement set to pixels, showing the grid set to increments of 1 pixel. I reset the rulers by double-clicking on the origin. The grid does not align to the ruler pixels. It's about halfway between on the y axis and about 3/5 of the way off on the x axis. When I create objects with the origin and width/height set to even pixels (which makes them fall between the pixel grid lines) and save for web, the edges are antialiased.
    How do I make the rulers and pixel grid register with each other? It seems odd this wouldn't be the default.

    Aha - it turns out the artboards were not placed precisely on the pixel grid. Their origins were set between whole pixel values. The rulers went with the artboards, so their pixels didn't match the grid pixels.
    Should be possible to just move the artboard and get everything lined up again.
    Still - I would  think the grid would readjust to the origin of whatever artboard you are currently working on, just as the rulers do. It not doing so is unexpected behavior.

  • Align to pixel grid for new object does not work

    I have set my document to align new objects (shapes) to pixel grid under the advanced settings
    I have gone into the options on the transform panel and set the check box to say all new objects should also align to pixel grid
    But when I create a shape it doesn't work, I end up with shapes with 3 digit decimal sub pixel sizes. eg. 34.536px
    If I want an object to align to pixel grid I'm having to set it individually for each object.
    Is this a bug that will get fixed or is there some work around, it's frustrating to have to set the feature for every single object I create

    Align new Objects to pixel grid setting works perfectly for all tools in Adobe Illustrator CC (17). In Illustrator 2014 CC (18) the rectangle and rounded rectangle tool do not automatically align to pixel.
    This thread says it's because of the new Live Rectangle tool objects are exempt from the Align to Pixel grid until you release them by expanding them.
    Bug? Illustrator CC 2014 and Pixel Grid settings not working.
    I'll be using the old version until Adobe 'fixes' this.

  • Why is Illustrator 2014 not creating pixel perfect sizes, when snapping to pixel grid

    I have the grid set to one line 10px intervals with 10 subdivisions so one pixel per line.  I have snap to grid on, I've switched off smart guides in case that was causing the issue.
    But when I drag a shape to snap it to the box it will add some additional .0XX pixel size to the end.
    It's making it really difficult to work when I have to go back and enter the values exactly.  Switching back to previous version but is this a release bug or is there a work around?

    That seemed to resolve the issue but I found another issue:
    - I check the align to pixel grid from the transform window
    - I use the shape tool
    - The checkbox for "align to pixel grid" unchecks itself
    The shape tool still functions the way (aligns to pixel grid) I want but the UI is really bad.

  • Line weight changes when using Align to Pixel grid

    When I select Align to Pixel Grid in the Transform Panel, I see line weight changes occur. I try to change the line weight in the either the Stroke or Appearance panel and it will not change, no layers locked, any ideas how to change the line weight?

    Chouettecacahuete wrote:
    ... I noticed that the line increases from 0.5pt to 1pt mainly (although not always) on straight lines, anything with a bezier curve seems to remain as 0.5pt.
    Just try this, with snap to pixel grid on, create 10 pixel long straight horizontal 1pt line with the pen or line tool. You won't be able to change the stroke weight to other than whole numbers. But if you rotate the line with only 0.01 degrees by typing this for rotation in the Transform panel, then you can change the stroke weight to 1.25 for example. When creating artworks for for screen display always verify the result with View > Pixel Preview turned on.
    tonyharmer wrote:
    ...I only referred to Photoshop to illustrate the behaviour - vector tools aside, everything you do in Photoshop has to be whole pixels
    As I said, Photoshop doesn't have  snap to pixel grid feature like Illustrator. You can easily create fuzzy lines in Photoshop if you are not drawing them precisely in the middle of the pixels. To check what I'm talking about try this In Photoshop, create a new document with a very small pixel dimensions like 20 x 20 pixels and zoom to the maximum 3200% to see clearly the result. Fill the image with light gray color so you can see the pixels when View > Show Pixel grid is on. Then with black color try drawing a straight line with any tool that creates pixels like a hard brush or the line tool used in pixel mode, and try using constraints like holding Shift while dragging. You will see that unless you draw the lines exactly in the middle of the pixels it will be fuzzy and not clean. The only way to ensure not fuzzy lines in Photoshop is to turn  off the anti-aliasing. You do this by unchecking the anti-alias for tools that have this option and instead of burshes use the pencil tool (which is brush without anti-aliasing). And Illustrator works the same too if you turn off Anti-aliased Artwork in its general section of the preferences and view the result with View > Pixel Preview, you don't need to have the Align to Pixel Grid on, the aliased result will be the same like in Photoshop.

Maybe you are looking for

  • Satellite L300-20D CD-ROM DRIVE NOT WORKING

    WHEN A CD IS PLACED IN THE CD-ROM DRIVE SOFTWARE INSTALLATION MENU DOES NOT APPEAR. HOW CAN I GET IT WORKING .PLEASE ANY OFFERS

  • ITunes could not back up... error (-20).

    I've been getting this message for some time. It didn't seem to be a big problem. But now I'm trying to upgrade to 4.0.2 (?), and it won't do it unless the backup happens, which it won't. It keeps giving me the "iTunes could not back up the iPhone "D

  • Modem usb ZTE MF668A en un Mac con 10.6.8 ?

    ¿Como se configura un modem usb ZTE MF668A en un MacBook Pro 2010 con 10.6.8 ?

  • Problem downloading OSX Mountain lion

    i tried to downlaod the above mentioned software on my mac and was charged for it on my credit card for the amount, but due to connection pb the downloading stopped and I was never able to have it installed on my MAC. How can i get it again without h

  • T5i 3X to 10X digital zoom

    I recently purchased the Rebel T4i.  In reviewing the specs for the T5i, I notice that it is going to have the 3X to 10X digital zoom that the T4i does not.  As I am new to the dslr industry, can you explain to me exactly what this means?  Should I e