Changing Bitmap Color using colorTransform

I am having a bit of a problem where I have a function that takes a ColorPickerEvent. I am trying to colorTransform a "loaded bitmap" of a movieclip to the selected color but For some reason it is not setting
// colour
function setColourFor(e:ColorPickerEvent){
          var image:InteractivePNG = getChildByName(type) as InteractivePNG; // movieClip
          var bitmap:Bitmap = image.getChildAt(0) as Bitmap; // loaded PNG
               var c:ColorTransform = bitmap.transform.colorTransform;
          bitmap.transform.colorTransform = new ColorTransform();
          c.color = e.color; // colorpickerevent
          bitmap.transform.colorTransform = c;
the bitmap color doesn't seem to change.
It works however if I were to set the movieclip's colorTransform (var image)
I'd note that the Bitmap contains PNG' with some transparency

hi
change the last line of your function to:
bitmap.transform.colourTransform(bitmap.bitmapData.rect, c);
the first parameter is a Rectangle object defining the area of the bitmap that the transform affects

Similar Messages

  • Can I change the colors used in iOS7?

    Can I change the colors used in iOS7?
    The white background makes reading text and numbers very difficult.  Especially if the are in light gray.

    The answer to your question is "No"...and what you're experiencing is a major gripe with this "Upgrade".
    If Apple would allow the Invert Colors option to be activated without the effect that has on images it would resolve most of the concerns about iOS 7.  I would even consider downloading it... again.

  • When I change the color using windows 7 color, I get a prompt to change back to firefox default or everything is very slow. Isn't there another way to fix the i

    When I change the color using windows 7, apparently firefox runs slower. The videos I watch are spotty and looking like it's in slow motion. Sometimes I get a prompt to use firefox colors and this fixes it. But why can't I use other colors, and are there settings to help me fix this problem? Thank you for any information you can give me. Joyce

    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/
    You can check for problems caused by recent Flash updates and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • Change cell colors used within a function

    While using various functions in a spreadsheet I use to track my bills on a monthly basis, the functions do a great job of highlighting all the cells included. The problem is.....I cannot see them well, some not at all, since I am color blind and the palette seems to be a very light, pastel. Is there a way to control the colors used by functions to highlight in more basic colors or darker grays?
    Thanks!

    i,
    Have you explored the contrast enhancement options in System Preferences, Personal, Universal Access, Seeing, Display?
    Regards,
    Jerry

  • How can I change the color of interactive image label box background.

    Interactive image labels are a bit overwhelming in appearance. Can I change the label background color or make it partially transparent? I have tried several things and looked this up on Lynda.com training but no info.

    don't know how much this might help but you can change some colors using the Inspector as follows:
    from the text menu you can control paragraph and character colors, from the text menu you can control the text color.
    hope this helps...

  • Changing control color.

    Hi,
    1. Is it possible to change List column colors?
    2. I changed controls colors using Caption string override property as follows
    font color=red> First Name </font
    The field name(First Name)color changed to red color but my requirement is i want to display "First" in Red color and "Name" in Green color. Is it possible if possible plz reply me.
    Thanks & Regards
    Edited by: Forum User on Jun 27, 2011 2:18 AM

    Hi Joseph
    Thank u for ur reply. I try it but it is not working for List Applet.
    Thanks & Regards

  • Changing color of a field after changing the data using OOPS ALV.

    Hi Experts,
    I have displayed three fields (price, no. of products and total amount) in my ALV grid using OOPS.
    Then am changing the data in either price or no. of products fields. When I click ENTER key the value in total amount changes correspondingly. Am able to achieve till this point.
    Now I have to change the color of the three fields( price, products and total amount) of the affected row alone and not the entire set of rows in the output grid.
    Please provide suggestions.
    Thanks in advance.

    Hi,
    You have to use Layout and Output data in your OO ALV. The below code is using FM you can replicate it in OO ALV
    types: begin of t_data,
             flg(3) type c,
             sty    type lvc_t_styl,
             col    type lvc_t_scol,
           end of t_data,
           t_tdata type table of t_data.
    constants: c_red type i value '255',
              c_g   type i value '1'.
    DATA: i_fcat type LVC_T_FCAT,
          s_fcat type lvc_s_fcat,
          s_lay  type lvc_s_layo,
          s_sty  type lvc_s_styl,
          s_col  type lvc_s_scol,
          i_data type t_tdata,
          s_data type t_data.
    s_lay-stylefname = 'STY'.
    s_lay-CTAB_FNAME = 'COL'.
    s_fcat-FIELDNAME = 'FLG'.
    APPEND s_fcat to i_fcat.
    CLEAR: s_data.
    s_data-flg = 'Yes'.
    s_sty-FIELDNAME = 'FLG'.
    s_sty-style = CL_GUI_ALV_GRID=>MC_STYLE_HOTSPOT.
    insert s_sty into TABLE s_data-sty.
    s_col-fname = 'FLG'.
    s_col-color-col = 6.
    s_col-color-inv = 1.
    insert s_col into table s_data-col.
    APPEND s_data to i_data.
    CLEAR: s_data.
    s_data-flg = 'No'.
    s_sty-FIELDNAME = 'FLG'.
    s_sty-style = CL_GUI_ALV_GRID=>MC_STYLE_HOTSPOT_NO.
    insert s_sty into TABLE s_data-sty.
    APPEND s_data to i_data.
    CLEAR: s_data.
    s_data-flg = 'No'.
    s_sty-FIELDNAME = 'FLG'.
    s_sty-style = CL_GUI_ALV_GRID=>MC_STYLE_HOTSPOT_NO.
    s_col-fname = 'FLG'.
    s_col-color-col = 6.
    insert s_col into table s_data-col.
    insert s_sty into TABLE s_data-sty.
    APPEND s_data to i_data.
    CLEAR: s_data.
    s_data-flg = 'Yes'.
    s_sty-FIELDNAME = 'FLG'.
    s_sty-style = CL_GUI_ALV_GRID=>MC_STYLE_HOTSPOT.
    insert s_sty into TABLE s_data-sty.
    APPEND s_data to i_data.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
    EXPORTING
       IS_LAYOUT_LVC                     = s_lay
       IT_FIELDCAT_LVC                   = i_fcat
      TABLES
        T_OUTTAB                          = i_data
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    IF SY-SUBRC <> 0.
    ENDIF.
    Thanks,
    Kiruba

  • Using footage from my iPhone 4, how can I remove the black bars on the sides of my picture? Or change the color to white...

    My footage is vertical and there are two black bars on the side filling in the rest of the picture. I want to imbed this into PowerPoint without the black bars on the side. Any suggestions on how I can remove them or at least change the color to white? I changed the background color in View > Background > White, but it was only for editing purposes and didn't keep the color after rendering.

    To change the background to white, in FCE, place the video on track V2 and place a color matte generator on track V1.  The default color for the color matte is grey so you'll need to change it to white using the color picker.
    -DH

  • Changing fields color in CL_GUI_ALV_GRID using class

    Hi,
    I've written a lot of posts but still I have problem with changing color for CL_GUI_ALV_GRID.
    I have class ZKSL_CL_4_17_ALV_GRID_OO with 3 methods : SELECT, HANDLE_DBL_CLICK AND DISPLAY_ALV
    I want to change fields color every time I double click on IT.
    METHOD SELECT.
       DATA:
             lt_sflight                TYPE TABLE OF           zkslt_sflight,
             ls_layout                 TYPE                    lvc_s_layo,
             lr_custom_container       TYPE REF TO             cl_gui_custom_container,
             lr_my_class               TYPE REF TO             zksl_cl_4_17_alv_grid_oo.
       SELECT *  FROM zkslt_sflight  INTO TABLE mt_sflight
          WHERE carrid    = iv_carrid AND
              ( fldate    IN it_date  OR
                price     IN it_price OR
                planetype IN it_type )
    CALL FUNCTION 'Z_KSL_SCREEN'.
    ENDMETHOD.
    from FM z_ksl_screen i call screen 400 and from status_400 output  I call method DISPLAY_ALV
    METHOD display_alv.
       DATA:
              lr_custom_container       TYPE REF TO             cl_gui_custom_container,
              lt_sflight                TYPE TABLE OF           zkslt_sflight,
              lt_catalog                TYPE STANDARD TABLE OF  lvc_s_fcat,
              ls_catalog                LIKE LINE OF            lt_catalog,
              ls_layout                 type                    slis_layout_alv,
              lr_my_class               TYPE REF TO             zksl_cl_4_17_alv_grid_oo.
       CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
         EXPORTING
           i_structure_name = 'ZKSLT_SFLIGHT'
         CHANGING
           ct_fieldcat      = lt_catalog[].
    ************BULID LAYOUT
       ls_layout-no_input = 'X'.
       ls_layout-colwidth_optimize = 'X'.
       ls_layout-totals_text       = 'Totals(201)'.
       ls_layout-info_fieldname    = 'LINE_COLOR'.
       IF mr_gui_alv_grid IS INITIAL.  "-----------------------------------if----------------------&
         CREATE OBJECT: lr_custom_container
           EXPORTING
             container_name = 'DISPLAY',
             lr_my_class.
         CREATE OBJECT mr_gui_alv_grid
           EXPORTING
             i_parent = lr_custom_container.
         SET HANDLER lr_my_class->handle_dbl_click FOR mr_gui_alv_grid.
         CALL METHOD mr_gui_alv_grid->set_table_for_first_display
           EXPORTING
             i_structure_name = 'ZKSLT_SFLIGHT'
            is_layout        =   ls_layout
             i_save           = 'A'
           CHANGING
             it_outtab        = Mt_sflight
             it_fieldcatalog  = lt_catalog.
       ELSE.     "-------------------------------------------------ELSE---------------------&
         mr_gui_alv_grid->refresh_table_display( ) .
       ENDIF.
    ENDMETHOD.
    In handler i am trying to change fields color and call method display sending new out_table
    CALL METHOD me->display_alv
         CHANGING
           ct_fieldcat = lt_fieldcat.
    Please give me some easy advice how to do that.
    thank you in advice.

    Thank you Klaus for your reply,
    The problem is that I need to make this using classes.
    I tried to make my structure data with LVC_T_SCOL as you wrote,
    a field of table type LVC_T_SCOL in the structure of your output table
    DATA BEGIN OF lt_data. 
           INCLUDE STRUCTURE sflight.
           DATA cellcolors  TYPE lvc_t_scol .
       DATA END OF lt_data.
    TYPES: BEGIN OF mtt_tab.
    *         INCLUDE STRUCTURE ZKLST_sflight.  " I get error that I cannot use ref to abap dic
               INCLUDE TYPE ZKSLT_SFLIGHT.
               TYPES: cellcolors  TYPE lvc_t_scol ,
                 END OF mtt_tab.
    After making type mtt_tab
    i declare data   lt_tab                    TYPE STANDARD TABLE OF  mtt_tab.
    and when I try to copy table mt_sflight (it is atribut of calss) like below
    LOOP AT mt_sflight INTO ls_mt .
    *   READ TABLE lt_tab INDEX sy-tabix ASSIGNING <ls_tab>.
    *   MOVE-CORRESPONDING <ls_mt> TO <ls_tab>.
    *    UPDATE lt_tab FROM TABLE mt_sflight.
         MOVE-CORRESPONDING ls_mt to lt_tab.
       ENDLOOP.
    I am getting error "lt_tab is not internal str or table with header"
    Can you help me with this? 

  • My Illustrator does not allow me to change colors using swatches panel. Help pleas.

    Few days ago I started having strange problems with my Illustrator CS5 application. I am using MacBook Pro with Intel Processor.  After major update on the Mac OS  few days ago  I noticed I can not change colors in my drawings using swatches panel. The function on my Illustrator CS5 stopped working.  When I select object and try to change its fill or stroke color using fill and stroke from the options bar above work space,  none of the swatches would work.  The are there how ever nothing hapends when I select them, the color remains the same.The same thing happens if I try to use the swatch panel, I select the object then I try to select new color from swatch but the fill or stroke does not change. I can only change color on my drawings using the color panel but that is not useful for me since I need to get precise colors using approved color swatches ether from pantone library or approved by client.
    The other strange thing is my selection tool does not deselect when I click outside on or of the artboard, the object remains selected until I reselect another object or use the keyboard short cut to deselect it.
    I have tried various options to resolve the issue from deleting and reseting preference to completely uninstalling and  reinstalling Illustrator CS5. I even installed back my old CS4 version because I had to complete a project  and the same issue is happens there as well. I also reset the application using Time Machine from few months ago when it was working correctly. What happens when I reset or reinstall the app, it works for  about 10 min correctly as it should and and then it reverts to the same problem. I am out of options and do not know what else I could  do to fix this. Right now I am working on my old Mac tower G5 and CS4 where everything works as it is suppose to, but I really need to get this fixed. Can any one help or has solution for my problem? Please.

    hey i m working on my illustrator and i m having many problems with my swatches
    for example i use the green phosphorique i don't get this color i get another green
    and many colors too it's like illustrator chooses for you the only green color
    so please i kind of need help i can show you pictures of that i print screen viewed them.. so anybody who can help... pleaaaaaaaaaase contact me because i m having a project now..
    my e mail is [email protected] i would be thankful
    i even tried to download the illustrator on my friend's computer also i m having this problem ....

  • Newbie - how to change the color of a line using ActionScript?

    This must be the most basic question in the world, but I've
    been searching the documentation for an hour.
    All I want to do is to draw a line on the stage, and then
    change its color (or endpoint positions) dynamically using
    ActionScript.
    This is the 1st step to creating complicated dynamic
    animations... (No, I do not want to use the timeline, I want to do
    it dynamically.)
    Yet a line can't be an instance, so I'm confused -- how can I
    possibly do this? Is there some key concept I'm missing here?
    Thanks
    Michael

    AS2 required you to create your own function for doing
    primitive shapes. In AS3 that has changed and the graphics package
    includes not only the old AS2 drawing API but also has methods for
    doing squares, circles etc.
    If you are a VB programmer, my honest opinion is to leave
    your traditional OOP mindset at the door when using Flash.
    Actionscript is still in its infancy and although AS3 does really
    strive for OOP oneness, it isn't there 100% like VB is which has
    been around 20 years longer and gone through numerous additions
    etc. Whenever I learn a new language VB, PHP, C, AS, Java....I try
    my best to look at the language as its own identity. All language
    share similarities but they all have their own idiosyncrisies. Keep
    an open mind and you'll find what you need.
    Most of the seasoned guys here will also tell you that
    although the documentation is decent, you are better off going out
    and picking up a book on Flash 8/CS3 and another one on
    Actionscript. Familiarize yourself with the program that way.
    With your programming background, I'd recommend picking up
    Essential AS2 (or AS3) by Moock depending on your version of Flash.
    Also, if you are more interested in the programmatic side of Flash,
    why not look into Flex Builder and AIR. Since it is purely a
    programming environment (no Flash IDE), you'd be more
    comfortable.

  • How to change the colors in Keynote 6.1 globally using the xml presentation file?

    Hi ,
    When I used keynote 5.3 in the "show package contents" I could find an Index.apxl.gz file. With that XML like file, I changed the color of a scheme globaly by replacing the color that I had with another one. However in new Keynote 6.1 there is no such Index.apxl file. There are a bunch of binary .iwa files that are unreadable and of course of no use to us.
    Anyone has solved this problem? Its really bad, and slowing my work down like a lot :/
    I wonder what kind of developers thought of this "amazing" change from XML to IWA (whatever that is)....
    Anyway thanks a lot!

    Hello Gary,
    I'm having the same problem as mshefiti, and I don't think that using a Custom Theme could be the solution, at least I could not see it.
    What we need is the possibility of replacing a specific colour through the all presentation instead of having to go through each single element in each slide that is a lot time consuming. Basically what you can do when you tie a color scheme into the theme colors in PowerPoint.
    With the theme, as far as I know, you can have specific color and settings for the titles, the text, the background etc, but not on the single elements you put in the slides, like icons, graphs etc.
    May be I'm missing something in the potential of the Custom Theme, or I'm not using it properly, if that's the case can you give a link to a tutorial that explain that ?
    Thanks

  • Change Excel sheet tab color using Open XML dll

    Hi,
    I want to change the sheet tab color of an excel Xlsx  document. I am using the following code but it does not set the sheet color. I get object reference exception when I set the sheet tab color.
    public static string filepath = @"C:\Test\Book1.xlsx";
    private static void ChangeSheetcolor()
    try
    using (SpreadsheetDocument spreadSheetDocument = SpreadsheetDocument.Open(filepath, false))
    WorkbookPart workbookPart = spreadSheetDocument.WorkbookPart;
    IEnumerable<Sheet> sheets = spreadSheetDocument.WorkbookPart.Workbook.GetFirstChild<Sheets>().Elements<Sheet>();
    //my code
    WorksheetPart worksheetPart =
    GetWorksheetPartByName(spreadSheetDocument, "Sheet1");
    if (worksheetPart != null)
    // worksheetPart.Worksheet.SheetProperties.TabColor.Rgb = DocumentFormat.OpenXml.HexBinaryValue.FromString("Red");
    worksheetPart.Worksheet.SheetProperties.TabColor.Rgb = DocumentFormat.OpenXml.HexBinaryValue.FromString("#CCCCCC");
    // Save the worksheet.
    worksheetPart.Worksheet.Save();
    catch (Exception ex)
    private static WorksheetPart
    GetWorksheetPartByName(SpreadsheetDocument document,
    string sheetName)
    IEnumerable<Sheet> sheets =
    document.WorkbookPart.Workbook.GetFirstChild<Sheets>().
    Elements<Sheet>().Where(s => s.Name == sheetName);
    if (sheets.Count() == 0)
    //does not exist
    return null;
    string relationshipId = sheets.First().Id.Value;
    WorksheetPart worksheetPart = (WorksheetPart)
    document.WorkbookPart.GetPartById(relationshipId);
    return worksheetPart;
    How to change the sheet tab color using Open XML dlls.
    Thanks
    Ashok

    Hi J_Prasanna,
    I'm afraid that it's not possible with OpenXML SDK, but it's possible if you use Excel PIA along with Internet Explorer. Use the Internet Explorer COM object to render the HTML content, then copy the document, use the Paste method of the Worksheet object
    to paste the text with format.
    Dim IE As Object
    Set IE = CreateObject("InternetExplorer.Application")
    With IE
    .Visible = False
    .Navigate "about:blank"
    .document.body.InnerHTML = Sheets("Sheet1").Range("A1").Value
    .document.body.createtextrange.execCommand "Copy"
    ActiveSheet.Paste Destination:=Sheets("Sheet1").Range("A1")
    .Quit
    End With
    The code is similar if you use managed project.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • When using Preview can I change highlight color

    I like using Preview because it is so fast when opening a pdf file.
    When I use the search function and get a list of all the found items, I start browsing each of the pages. However, the text is highlighted with a light gray bar. As this is difficult to see, I would like to change the color.
    Can anyone please tell me how to do this?

    I found an answer at this link: http://forums.macrumors.com/showthread.php?t=170739
    Using shift - tab a couple of times changes the highlighted text in the PDF to the selected preferred color that is set in Appearance in system preferences.

  • Problem changing scroll bar color using UIManager

    I am using the following code to change the color of a JScrollBar just before instantiating a JScrollPane:
    [ code ]
    //set colors
    UIManager.put("ScrollBar.thumbLightShadow", ltGrn );
    UIManager.put("ScrollBar.thumb", grn );
    UIManager.put("ToolBar.thumb", ltGrn );
    UIManager.put("ScrollBar.thumbDarkShadow", darkGrn );
    UIManager.put("ScrollBar.thumbShadow", darkGrn );
    UIManager.put("ScrollBar.thumbHighlight", ltGrn );
    //instantiate
    JScrollPane scrollPane = new JScrollPane( table );
    //reset UIManager
    UIManager.put("ScrollBar.thumbLightShadow", null );
    UIManager.put("ScrollBar.thumb",null );
    UIManager.put("ToolBar.thumb", null );
    UIManager.put("ScrollBar.thumbDarkShadow", null );
    UIManager.put("ScrollBar.thumbShadow", null );
    UIManager.put("ScrollBar.thumbHighlight", null );
    [ /code ]
    where ltGrn, darkGrn, and grn are various shades of green.
    Everything works fine, UNTIL I open another JFrame that is part of the same program. After doing this, the original scroll bar above is still green, EXCEPT the border of it has changed to Metal Theme puple from green. In addition, if that second JFrame has any JScrollBars of it's own, they are Metal Theme purple with a green border! It seems to be a bug since only one part of the JScrollBar changes. If anyone has any suggestions on this I thank you in advance.
    AC

    When I execute the following I see identical modified scrollbars on the two frames that are created within this little app. I am relatively new to Java, so the design might not be great here, but the code will compile and run as is. You can use this to see if you still see the effect you have described. I am using version 1.4.1_03 on Red Hat Linux 8.0.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.plaf.*;
    public class Frame extends JFrame implements ActionListener
         JButton btnOne = new JButton("First Frame");
         JButton btnTwo = new JButton("Second Frame");
         public static void main(String[] args)
              Frame f = new Frame();
              f.setSize(300, 300);
              f.show();
         public Frame()
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              redesignScroll();
              // This method resets the default colors for the scrollbars..
              btnOne.addActionListener(this);
              btnTwo.addActionListener(this);
              Container contentPane = getContentPane();
              contentPane.setLayout(new GridLayout(2, 1, 5, 5));
              contentPane.add(btnOne);
              contentPane.add(btnTwo);          
         public void actionPerformed(ActionEvent e)
              if (e.getSource() == btnOne)
                   new FirstPopUp();
              else new SecondPopUp();
         private void redesignScroll()
              final Color cBkd = new Color(97, 115, 87);
              UIDefaults defaults = UIManager.getDefaults();
              defaults.put("ScrollBar.thumbHighlight",
                        new ColorUIResource(Color.darkGray));
              defaults.put("ScrollBar.thumbShadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.shadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.background",
                        new ColorUIResource(cBkd));
              defaults.put("ScrollBar.darkShadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.thumb",
                        new ColorUIResource(cBkd));
              defaults.put("ScrollBar.highlight",
                        new ColorUIResource(Color.black));     
         private class FirstPopUp extends JFrame
              private JScrollPane sp;
              private String text = "Hello World!  First Pop Up!\n ";
              private JTextArea area;
              FirstPopUp()
                   area = new JTextArea();
                   int i = 0;
                   while (i < 20)
                        area.append(text);
                        i++;
                   sp = new JScrollPane(area);
                   getContentPane().add(sp);
                   setSize(200, 200);
                   show();
         private class SecondPopUp extends JFrame
              private JScrollPane sp;
              private String text = "Hello World!  Second Pop Up!\n ";
              private JTextArea area;
              SecondPopUp()
                   area = new JTextArea();
                   int i = 0;
                   while (i < 20)
                        area.append(text);
                        i++;
                   sp = new JScrollPane(area);
                   getContentPane().add(sp);
                   setSize(200, 200);
                   show();
    }

Maybe you are looking for

  • Preview Screen when Opening a File

    I recently had to reinstall Pro V9.  Now I no longer get the preview screen when I select File, Open.  I liked this feature since I could see the first page of each document and know which file contained what information. Does anyone know how to rese

  • Capacity Planning me-3600 and me-3800 devices

    Hi everyone, Currently I´m looking for information about Capacity Planning in ME-3600 and ME-3800 devices. I need to know about hardware description in detail, thresholds used (cpu, memory, etc), interfaces, queuing, latency and all the related with

  • Item Interface

    Hi, I'm learning Oracle Manufacturing. I need to load Items using Item Interface. I read that Import Item can be used to load from Interface tables into Manufacturing tables. I would like to know whether there is any similar process to load into Inte

  • Yahoo mail won't work on my macbook---

    it freezes up the screen everytime I get logged in.  I get my mail on my iphone and on other computers in the house (not macs) I'm not sure whats going on.  I've cleared my cache and reset safari-- I don't know what else to do.  Help!! Its making me

  • Sending an intimation mail

    HI ALL, How can we send a mail to the user intimating him that his report/BDC is completed in background?