Add ability to select background display color for transparent areas of image

Right now the background color for images with an alpha channel if always white.  This makes Bridge useless for sorting through images where the primary color is white.  It also looks like crap when you are doing a slideshow preview on a black background.  It is only useful for people who do web page designs on a white webpage, but even then you can't tell if the image is cut out properly if it was cut from a white background.  The only way to check an image is to load it into Photoshop and create a background layer, which is pretty slow for previewing an entire directory of images.  The ability to set the alpha channel background color has been available for years in competing programs such as Thumbs+ so I am dumbfounded that it isn't yet in Bridge CS4.

Agreed! Even primitive Mac Finder preview can show transparent alpha channel! Most Image browsing programs have this ability. Bridge CS4 is becomming finally usable, but this feature is a must!

Similar Messages

  • HT4623 my new iphone(4S) background display color is light yellow instant of white.

    my new iphone(4S) background display color is light yellow instant of white.

    Today after more than 45 minutes, talking to Apple Web, they decide to send me a new iPhone 4s. Good luck to everyone.

  • Remove a background color for transparency

    Greetings,
    I have an image with flattened layers and is a PNG image for the web.  I need to select only the white background and remove it for transparency.

    Use the magic eraser tool if there is no white adjacent to the background .  You will want to choose contiguous.  If there is white in the main part of the photo adjacent to the background, use a selection tool to choose where to apply the magic eraser.

  • Is there a way you can select a display option for Safari pages on the OS5?

    The tabbed version of Safari for the ipad2 is nice but the old one is better. Is there a way we can select a display option that lets a user toggle between the two?

    No, Safari on the iPad in iOS 5 uses tabbed browsing. You can try leaving feedback for Apple : http://www.apple.com/feedback/ipad.html

  • To display color for the rows in alv

    hi,
         i want to add colors to  all rows.for that i have declared an extra field in st_ekpo i.e  ' line_color(4) type c '.And in layout i passed it like this'   wa_layout-info_fieldname = 'line_color' .
    and finally i populated like this
    loop at it_ekpo into wa_ekpo.
    wa_ekpo-line_color = 'C410'.
    modify it_ekpo from wa_ekpo.
    endloop.
    but its not working.
    to add colors to all rows wat r the modifications i have to do.
    regards,
    pavan.

    hi,
    try like this
    TABLES:     ekko.
    TYPE-POOLS: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
      line_color(4) TYPE c,     "Used to store row color attributes
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          gd_tab_group TYPE slis_t_sp_group_alv,
          gd_layout    TYPE slis_layout_alv,
          gd_repid     LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
      fieldcatalog-fieldname   = 'EBELN'.
      fieldcatalog-seltext_m   = 'Purchase Order'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 10.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-seltext_m   = 'PO Item'.
      fieldcatalog-col_pos     = 1.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-seltext_m   = 'Status'.
      fieldcatalog-col_pos     = 2.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-seltext_m   = 'Item change date'.
      fieldcatalog-col_pos     = 3.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material Number'.
      fieldcatalog-col_pos     = 4.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-seltext_m   = 'PO quantity'.
      fieldcatalog-col_pos     = 5.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-seltext_m   = 'Order Unit'.
      fieldcatalog-col_pos     = 6.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-datatype     = 'CURR'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-seltext_m   = 'Price Unit'.
      fieldcatalog-col_pos     = 8.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-info_fieldname =      'LINE_COLOR'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    FORM display_alv_report.
      gd_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = gd_repid
          is_layout          = gd_layout
          it_fieldcat        = fieldcatalog[]
          i_save             = 'X'
        TABLES
          t_outtab           = it_ekko
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      DATA: ld_color(1) TYPE c.
      SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
       UP TO 10 ROWS
        FROM ekpo
        INTO TABLE it_ekko.
    *Populate field with color attributes
      LOOP AT it_ekko INTO wa_ekko.
    Populate color variable with colour properties
    Char 1 = C (This is a color property)
    Char 2 = 3 (Color codes: 1 - 7)
    Char 3 = Intensified on/off ( 1 or 0 )
    Char 4 = Inverse display on/off ( 1 or 0 )
              i.e. wa_ekko-line_color = 'C410'
        ld_color = ld_color + 1.
    Only 7 colours so need to reset color value
        IF ld_color = 8.
          ld_color = 1.
        ENDIF.
        CONCATENATE 'C' ld_color '10' INTO wa_ekko-line_color.
    wa_ekko-line_color = 'C410'.
        MODIFY it_ekko FROM wa_ekko.
      ENDLOOP.
    ENDFORM.                    " DATA_RETRIEVAL
    gd_layout-info_fieldname =      'LINE_COLOR'.
    u must write LINE_COLOR in uppercase....
    reward if useful...
    Edited by: Dhwani shah on Jan 8, 2008 10:12 AM

  • Set Background/Foreground color for Cell Renderer in JComboBox

    Hello,
    I was wondering if there is a way to change default settings for when I browse items under a JComboBox's cell renderer? I want the item's color to change (to what I set it to), when mouse enters the item. As of now, the cell's background color changes to Blue when I enter it. Is this default for JComboBox or might it have been set somewhere, that I need to look into?
    Please let me know if there are ways to do this.
    Thanks!
    Message was edited by:
    programmer_girl

    Here's my SSCCE:
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JFrame;
    import javax.swing.JComboBox;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.text.DefaultHighlighter;
    public class MyComboBoxTest extends JPanel {
          * @param args
         String[] patterns = {"pattern1","pattern2","pattern3"};
         public MyComboBoxTest()
              JPanel patternsPanel = new JPanel();
            setMinimumSize(new Dimension(100, 100));
            JComboBox patternList = new JComboBox(patterns);
            final JTextField editor = (JTextField) patternList.getEditor().getEditorComponent();
            patternList.setEditable(true);
            this.add(patternsPanel);
            patternsPanel.add(patternList);
            patternList.addActionListener(new ActionListener()
                 public void actionPerformed(ActionEvent e)
                      editor.setSelectedTextColor(Color.WHITE);
                      editor.setForeground(Color.WHITE);
                      try{
                           editor.getHighlighter().addHighlight(0, editor.getText().length(),new DefaultHighlighter.DefaultHighlightPainter(Color.BLUE));
                           } catch (Exception ex){
                                ex.getMessage();
            editor.addMouseListener(new MouseAdapter()
                 public void mouseClicked(MouseEvent e)
                      editor.getHighlighter().removeAllHighlights();
                      editor.setForeground(Color.BLACK);
                      editor.setSelectedTextColor(Color.BLACK);
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              JFrame frame = new JFrame("My ComboBox Demo");
              frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            frame.setSize(100, 100);
            frame.getContentPane().add(new MyComboBoxTest());
            frame.setLocation(50, 50);
            frame.pack();
            frame.setVisible(true);
    }

  • Display Color for sigle  CELL in ALV report

    Hi all,
    I have one doubt is it possible to make a particular cell as read color in ALV.
    Ex: I have one field which shows amount in my ALV report,My requirement is that when ever the amount is less then 'ZERO', I have to show that particular cell in read color.
    Regards
    Anil Kumar.N

    hi,
    here code for coloring a perticular cell
    TYPE-POOLS:slis.
    TABLES:mara,
           makt,
           marc.
    DATA:BEGIN OF itab OCCURS 0,
          matnr LIKE mara-matnr,
          maktx LIKE makt-maktx,
          werks LIKE marc-werks,
          mtart LIKE mara-mtart,
          matkl LIKE mara-matkl,
          meins LIKE mara-meins,
          ntgew LIKE mara-ntgew,
         rowcolor(4) TYPE c,
          cellcolors TYPE lvc_t_scol,
         END OF itab.
    DATA:t_fcat TYPE slis_t_fieldcat_alv,
         t_eve TYPE slis_t_event.
    DATA : st_layout TYPE slis_layout_alv.
    SELECTION-SCREEN:BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:mat FOR mara-matnr.  " no intervals no-extension.
    *PARAMETERS:mat LIKE mara-matnr.
    SELECTION-SCREEN:END OF BLOCK blk1.
    INITIALIZATION.
      PERFORM build_cata USING t_fcat.
      PERFORM build_event.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM display_data.
    *&      Form  build_cata
          text
         -->TEMP_FCAT  text
    FORM build_cata USING temp_fcat TYPE slis_t_fieldcat_alv.
      sy-tvar0 = sy-uname.
      WRITE sy-datum TO sy-tvar1.
      DATA:wa_fcat TYPE slis_fieldcat_alv.
      wa_fcat-tabname = 'ITAB'.
      wa_fcat-fieldname = 'MATNR'.
      wa_fcat-seltext_m = 'Material'.
      APPEND wa_fcat TO temp_fcat.
      wa_fcat-tabname = 'ITAB'.
      wa_fcat-fieldname = 'MAKTX'.
      wa_fcat-seltext_m = 'Description'.
      wa_fcat-fix_column = 'x'.
      wa_fcat-key = 'X'.                                     "To color a column
      APPEND wa_fcat TO temp_fcat.
      wa_fcat-tabname = 'ITAB'.
      wa_fcat-fieldname = 'WERKS'.
      wa_fcat-seltext_m = 'Plant'.
      wa_fcat-key = ' '.
      APPEND wa_fcat TO temp_fcat.
      wa_fcat-tabname = 'ITAB'.
      wa_fcat-fieldname = 'MTART'.
      wa_fcat-seltext_m = 'Type'.
      APPEND wa_fcat TO temp_fcat.
      wa_fcat-tabname = 'ITAB'.
      wa_fcat-fieldname = 'MATKL'.
      wa_fcat-seltext_m = 'Group'.
      APPEND wa_fcat TO temp_fcat.
      wa_fcat-tabname = 'ITAB'.
      wa_fcat-fieldname = 'MEINS'.
      wa_fcat-seltext_m = 'Measurement Unit'.
      APPEND wa_fcat TO temp_fcat.
      wa_fcat-tabname = 'ITAB'.
      wa_fcat-fieldname = 'NTGEW'.
      wa_fcat-seltext_m = 'Net Value'.
      APPEND wa_fcat TO temp_fcat.
    ENDFORM.                    "build_cata
    *&      Form  build_event
          text
    FORM build_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = t_eve
        EXCEPTIONS
          list_type_wrong = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "build_event
    *&      Form  data_retrieval
          text
    FORM data_retrieval.
      SELECT maramatnr  maramtart maramatkl marameins mara~ntgew
       maktmaktx  marcwerks
      INTO CORRESPONDING FIELDS OF TABLE itab
      FROM mara INNER JOIN makt ON
      maramatnr = maktmatnr
      INNER JOIN marc ON
      maramatnr = marcmatnr
      WHERE mara~matnr IN mat.
      SORT itab BY matnr.
      DELETE ADJACENT DUPLICATES FROM itab.
    ENDFORM.                    "data_retrieval
    *&      Form  display_data
          text
    FORM display_data.
    *******************************For setting Cell Color*******************************************
      DATA ls_cellcolor TYPE lvc_s_scol .
      st_layout-coltab_fieldname = 'CELLCOLORS'.
      READ TABLE itab INDEX 5 .
      ls_cellcolor-fname = 'MATNR' .
      ls_cellcolor-color-col = '1' .
      ls_cellcolor-color-int = '1' .
      APPEND ls_cellcolor TO itab-cellcolors .
      MODIFY itab INDEX 5 .
    st_layout-colwidth_optimize = 'X'.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = 'ZALV_DS'
          is_layout          = st_layout
          i_save             = 'A'
          it_fieldcat        = t_fcat
          it_events          = t_eve
        TABLES
          t_outtab           = itab
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "display_data
    Please reward if useful...

  • 2 weeks ago, Firefox changed. It will not print graphics in a web page or show them in print preview. It also does not provide the ability to select options in "print forms". they are now grayed out.

    I am using www.investools.com
    It prints the graphics in the normal page fine
    but when I switch to prophetcharts, which loads javascript, the graphs do not display or print.
    The text on the left side of the display show but graphs do not, even when I reduce printing size to 30%.
    I am using an HP 8500 Pro Officejet.
    Everything works in IE fine (but I don't want to use IE).

    Hi ArielAce , thanks for getting back to me!
    I would recommend downloading and running the HP Print and Scan Doctor.
    Please keep me posted!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • How to select a display varaint using VL06O with background processing

    We are on 4.70 I would like to schedule a few delivery reports using VL06O I have created a selection variant which works fine. I am not able to select a display variant for background processing. If I process in the foreground the system uses the my user defined variant but not in background processing.
    Help,
    Jim Durkin
    Gleason
    Edited by: James Durkin on Dec 4, 2008 7:22 PM
    Edited by: James Durkin on Dec 8, 2008 6:51 PM

    Background processing in VL06O is actually meant for outputting the delivery documents (picking list, delivery note etc.) and not the delivery list itself. The list of deliveries you see when releasing the spool request is for your reference only, not relevant to any layout maintenance.
    Edited by: Jalo Kotinurmi on Dec 11, 2008 1:56 AM

  • Color  for a Field in alv output

    Hi All,
    I use a field in the ALV grid output which needs to display color (red or green) depending on certain validations. Please tell me how to display color for this field. The program uses oops.
    Thanks.

    Hi
    1. add one more field to ur final internal table say COLOR(4)
    2. in layout wa_layout-style_fname = 'COLOR'. " if its grid
    wa_layout-style_fieldname = 'COLOR'. "if its list
    3. read table itab index 3.
    itab-color = 'C410'.
    modify itab index 3
    4. see program SHOWCOLO for all color codes
    1. Add a field of data type CHAR(3) to the internal output table.
    2. Enter the color code in the appropriate field of the row to be colored in the internal
    output table:
    Code: 'Cxy'
    C = Color (all codes begin with 'C')
    x = color number ('1' - '9')
    y = highlight ('0' = off, '1' = on)
    3. Assign the internal output table color code field name to the IS_LAYOUT importing
    structure IS_LAYOUT-INFO_FIELDNAME field and pass this structure in the ALV call
    interface.
    To enable row coloring, you should add an additional field to your list data table. It should be of character type and length at least 4. This field will contain the color code for the row. So, let’s modify declaration of our list data table “gt_list”.
    you should fill the color code to this field. Its format will be the same as explained before at section C.6.3. But how will ALV Grid know that you have loaded the color data for the row to this field. So, you make it know this by passing the name of the field containing color codes to the field “INFO_FNAME” of the layout structure.
    e.g.
    ps_layout-info_fname = <field_name_containing_color_codes>. “e.g. ‘ROWCOLOR’
    You can fill that field anytime during execution. But, of course, due to the flow logic of screens, it will be reflected to your list display as soon as an ALV refresh occurs.
    You can color an entire row as described in the next section. However, this method is less time consuming.
    Coloring Individual Cells
    This is the last point about coloring procedures for the ALV Grid. The procedure is similar to coloring an entire row. However, since an individual cell can be addressed with two parameters we will need something more. What is meant by “more” is a table type structure to be included into the structure of the list data table. It seems strange, because including it will make our list data structure deep. But anyhow ALV Grid control handles this.
    The structure that should be included must be of type “LVC_T_SCOL”. If you want to color the entire row, this inner table should contain only one row with field “fname” is set to space, some color value at field “col”, “0” or “1” at fields “int” (intensified) and “inv” (inverse).
    If you want to color individual cells, then for each cell column, append a line to this inner table which also contains the column name at field “fname”. It is obvious that you can color an entire column by filling this inner table with a row for that column for each row in the list data table.
    Reward points if useful
    Regards
    Anji

  • Choose accent color for hovered icons when using dark interface in Bridge?

    How about add the ability to choose the accent color for hovered icons when using a dark interface in Bridge?  Currently, the icon color remains orange and unchangeable.  Personally, I would prefer a blue accent color to match my system.  Any chance of making this possible in CS6?

    Oh, I should add that I'm looking for solutions somewhat up-to-date and/or are related to or designed for 10.6 Snow Leonard. I did a search for answers before asking the question, and the (mostly unsatisfactory) answers I found were all from several years ago and applied to earlier versions of OSX (10.3, 10.4, etc.), and therefore no longer were relevant or usable.

  • Losing Displays Color setting when waking from sleep

    Hey y'all!
    I haven't seen this specific problem addressed anywhere in the forums - I have a Pismo 500 running 10.3.9. The problem is that when I wake the Pismo from sleep, nine times out of ten, it defaults to the uncalibrated display space. If I open the Prefs pane, the Displays>Color tab shows the correct calibrated profile selected, but the colors and such are way off. If I just click on the selected profile, it goes back to that profile correctly - but that's too many mouse clicks just to see correctly after waking!
    The confusing thing is that this problem never shows up during starts/restarts - during the boot process, the Pismo correctly applies the selected profile and the change is noticable (my display is natively WAAAAY too blue/cyan for my tastes and line of work). So it works from a standing start, and from a warm reboot, just not waking from sleep.
    The problem didn't manifest until after I moved from 10.2.x to 10.3, but that move solved so many other problems, I'm still happy I did it.
    Any thoughts?

    Hi,
    I do have a work around this problem.
    Go to mac hd, to users, to what looks like a house, to library, to colorsync, to profiles. Open profiles and take that profile and put it on the desktop.
    Next go to mac hd, to library, to colorsync, to profiles, to displays.
    Open displays and place the profile on the desktop in the there.
    That solved my problem.
    emac   Mac OS X (10.3.9)   Combodrive, SN G84162YCQJB

  • Customize display attributes for LOV

    Hi all,
    In normally, when create List of values for attributes :
    After we selected List Attribute, next UI hints tab we select Available display attribute, for example: I select two attributes : CountryID and ProvinceName --> that's means multiple values are separated by white space like this: 1 England....The question is how can customize to: 1.England
    i want replace "." instance of "space". Thanks

    The trick is that you add a calculated attribute to the sql like
    select country_id, country_name, country_id || ' ' || country_name as LOV from countries
    COUNTRY_ID COUNTRY_NAME                             LOV                                      
    AR         Argentina                                AR Argentina                               
    AU         Australia                                AU Australia                               
    BE         Belgium                                  BE Belgium                                 
    BR         Brazil                                   BR Brazil      
    then in you use the country_id to store the selected value and hte LOV column to display the options on the ui.
    Timo

  • Background Layer colors and images

    I just made the switch from gimp to Freehand. After reading
    the instruction booklet, the only real problem I'm having is
    setting the background. I'd like to make a gradient background, but
    I can't figure out how to make any background whatsoever show up.
    Even when I select a new color for the color box, the page remains
    white. Any help would be appreciated.

    Since you are coming from GIMP you are still thinking in
    terms of Bitmap
    Editors. Freehand is very different and you have to change
    your way of
    thinking. The white box is not a background, it is an empty
    page. You
    place items on that page according to what you want it to
    look like. If
    you want a color to fill the entire page then draw a
    rectangle the size
    of the page and apply your color/gradient to the rectangle.
    FYI: When placing items in Freehand, it does have layers like
    Photoshop
    (does Gimp?) but they work differently. In Freehand multiple
    items can
    exist on the same layer without destructing/changing other
    items on that
    layer. So if your background rectangle goes on the same layer
    as
    something else you may find yourself accidentally sending the
    other item
    behind the background or the background in front of the item.
    Thinking
    in bitmap editing terms you may think the item is wiped
    out/gone, but
    it's not. Just send the background behind it again. You can
    eliminate
    these problems by setting up different layers for different
    categories
    of items, background, text, graphics, etc. You can then lock
    layers so
    that you don't accidentally grab onto items that you don't
    want moved,
    such as the background.
    Look out for the "Background" layer that appears by default.
    See that
    bar right above it in the Layers Panel that separates it from
    Guides and
    Foreground? That's a printing bar. Anything below the bar
    will not
    print and will be represented as ghosted image in the
    preview. So if
    you intend to use the Background layer for your background I
    suggest
    that you move the Background layer above the bar and under
    the
    Foreground layer. Lock the Background layer and then place
    items on
    your Foreground layer.
    Rich
    bippity wrote:
    > I just made the switch from gimp to Freehand. After
    reading the instruction
    > booklet, the only real problem I'm having is setting the
    background. I'd like
    > to make a gradient background, but I can't figure out
    how to make any
    > background whatsoever show up. Even when I select a new
    color for the color
    > box, the page remains white. Any help would be
    appreciated.
    >

  • Alternate Color for Search Results

    Hi Experts,
        I have a scenario, When I search a keyword in TREX Search of Portal, I am getting the result.  Is it possible for me to give background(Alternative) coloring for the ResultList(1,3,5,.. results in one color, and 2,4,6,.. results in another color)?  If so, please guide me, how to achieve this?
    Thanks & Regards,
    Venkatesh. K

    Hi Venkatesh,
    It will surely work out.
    But you must have added a different layout which is not suitable for search result rendering.
    The layout controller should be Simple Layout Controller.
    And then u can have a CollectionListRenderer where u can mention ROW ALTERNATING.
    Regards
    BP

Maybe you are looking for