How to change status icons in Kopete?

Default icons are really bad. There is an option to change smilies, but I can't find the option how to change status icons (online, offline, etc.).

I think you'll have better chance of getting an answer for this on forum.kde.org.
Or you could search KDElook for special kopete icons...

Similar Messages

  • How I change the icon for iTunes songs?

    When I drag iTunes songs onto my desktop the icon is white with a gray iTunes icon. How can change this icon for all of my iTunes songs?

    Thanks Patrick. I used Control-Click on the actual audio file on my desktop opened the Show View Options menu and turned off the icon preview option. That changed my icons from gray with a white background to red with a white background which is exactly what I wanted.  You pointed me in the right direction. Appreciate it.

  • How to change the icon for print dialog?

    Hello,
    I have a JTable, and with the print() method, I'm able to bring up the Print dialog and successfully print the contents of the table. Example:
    myTable.print( JTable.PrintMode.FIT_WIDTH, myHeaderFormat, myFooterFormat );This works great, but one small detail I'd like to change is the icon in the top-left corner of the dialog. The icon is currently the default Java coffee cup icon, while the rest of my application uses my custom icon. I couldn't find any documentation in the API or tutorials that Java has listed which shows how to change the icon, so I'm not even sure if it's possible (but why shouldn't it be?).
    My question is this: Is it possible to change the default icon in the print dialog? Or do I have to either make my own print dialog somehow, or use a third-party print dialog?
    Thanks

    tjacobs01: Appreciate the assistance (despite your sass). I've already searched the API, tutorials, and this forum. I'm already well aware of the setIconImage() method for JFrame -- after all, that's how I set the icon for my other frames as I previously mentioned. However, I want to set the icon for the print dialog called from the print() method of JTable.
    How would I use setIconImage() for the print() method of JTable? The print() method returns a boolean value, not a JFrame, so I'm just not sure how to implement what you're saying.
    Thanks

  • How to change the icon of coffee on the titile bar

    Hi!
    I am having this problem that
    how to change the icon of coffee on the titile bar
    if someone know how please respond
    Asif

    Next time please post your question in the appropriate forum, since this forum discusses the Java3D API.
    The answer is use the Frame.setIconImage method.

  • How to change the Icon for a JFileChooser ?

    Has anyone figured out how to change the icon for an instance of JFileChooser from the coffee cup to something else?
    I'm on 1.4
    Thanks,
    Ken

    Never mind. I figured it out.
    You have to use an instance of JFrame in the call to showXxxxDialog(Component c). Set the icon of the JFrame to what you want the JFileChooser's icon to be.

  • How to bring status icons in the Adobe Form.

    Hi Experts,
    I am new to Adobe forms and I need to bring a icon indicating the satus ( For example green icon shoud be displayed if the values exceed our expection ) . Currently if I try to bring an icon in the form it is just displaying the text value corresponding to the icon even though the icon is of data type  ICONTEXT (For Example:Instead of displaying a icon in green it just displaying the corresponding text values like '@@4' ) . When we try to display the same icon in the table view it is displayed in a form of image.
    Kindly let me know how to bring status icon in the adobe forms.
    Thanks in Advance.
    Regards,
    Nandha

    Hi,
    The ADS will not understand this as an icon and create it on the PDF. If you want to insert an icon in the
    PDF you should insert it as an image in the Designer.
    Arun

  • How to Change Application Icons

    Does anyone know how to change the Icon on an application that iTunes shows the Artwork, but I can't copy or paste it to change icons. Any thought's?

    You can not change the icon for an application.

  • How to change the icon of the news in Portal?

    Do you know how to change the icon of the news in Portal?
    I use NewBrowser to Browser the news, but I think the Icon of the News is not good,I want change it ? what should I do?
    Thanks for your help!

    Hi,
    if you are talking about the NewsBrowser of Knowledge Management (Content Management -> Explorer -> News), you should see a button "Edit" on the right side of the news.
    Press this button and fill in a new URL in the input field "Image URL". After saving the new settings, the new image should be displayed.
    Kind regards,
    Ralf

  • How to change the icon of JOptionPane and JFileChooser in swing

    Hi,
    Does any body know how to change the icon of JOptionPane and JFileChooser in swing.
    Please help me out in this.
    Thanx in advance.

    Try this
    import javax.swing.*;
    import java.awt.event.*;
    public class Untitled4 {
      public Untitled4() {
      public static void main(String[] args) {
        ImageIcon i = new ImageIcon("C:/TestTree/closed.gif");
        JOptionPane p = new JOptionPane();
        p.setMessage("This JOptionPane has my icon");
        p.setMessageType(JOptionPane.QUESTION_MESSAGE);
        p.setOptionType(JOptionPane.YES_NO_CANCEL_OPTION);
        final JDialog d = p.createDialog("test");
        d.setIconImage(i.getImage());
        d.setVisible(true);
        d.setModal(true);
        if(Integer.parseInt(p.getValue().toString()) == JOptionPane.YES_OPTION) {
            System.out.println("You Clicked Yes");
    }

  • How to change the icon for 'windows group' in Java 1.6 [Windows XP] ?

    Hello,
    I was wondering if there is a possibility to change the icon for 'windows group' in Java 1.6...
    I'm using Windows XP SP2. Now the windows from my Java 1.6 application are grouped with the standard Sun icon [screen below] on the group.
    http://img382.imageshack.us/img382/8995/iconbl1.png
    I would like to change the icon for my own. Is there a way to do that ?
    Please help.

    Whichever icon I use for the main frame (I tried few), after grouping the main frame and other sub-frames the icon is changed to standard 'Java Sun' icon as you can see in the screenshot from my first post. The problem occurs only when frames are grouped, when the are separated in the task bar their titles and icons are ok...
    So how can I change the icon/title for the group only (for Java 1.6 in Windows XP) ?

  • How to change status of Campaign

    Hi
    I have writtend following code to change the status of the campaign
    Data : lit_status_comt TYPE crmt_status_comt,
    wa_status_comt LIKE LINE OF lit_status_comt,
    lit_field_names TYPE crmt_input_field_names_tab,
    wa_input_field_names LIKE LINE OF lit_field_names.
    CLEAR wa_status_comt.
    wa_status_comt-ref_guid = 'GUID of the HEADER or Line Item of the Order'.
    wa_status_comt-ref_kind = 'Pass 'A' for Header/ 'B' for Item'.
    wa_status_comt-status = 'E0035'. " Pass the user status
    wa_status_comt-user_stat_proc = 'ZCONTR_H' " Value for the User Status Profile.
    wa_status_comt-activate = 'X'.
    INSERT wa_status_comt INTO TABLE lit_status_comt.
    wa_input_field_names-fieldname = 'ACTIVATE'.
    INSERT wa_input_field_names INTO TABLE lit_field_names.
    IF lit_status_comt IS NOT INITIAL.
    CALL FUNCTION 'CRM_STATUS_MAINTAIN_OW'
    EXPORTING
    it_status_com = lit_status_comt
    CHANGING
    ct_input_field_names = lit_field_names
    EXCEPTIONS
    not_allowed = 1
    error_occurred = 2
    warning_occurred = 3
    OTHERS = 4.
    ENDIF.
    But status is not changing in CRM_JEST table. How to change the status in CRM_JEST.
    I want to change the CREATED status on RELEASED status..
    Could you please help me inthis.
    Thanks & Regards
    Sowmya

    Sowmya,
    you do not need to build custom code. There's the program CRM_MKTPL_COND_IF_R001 that does exactly this work.
    Regards
    C

  • How to change an icon of a button

    hi guys,
    i want to change the icon of a button when it is click
    how can i do it?
    thanks

    You register a listener for that button, e.g.:
    button.addActionListener(new...)
    Then add code to the listener class:
    button.setIcon(new...)
    If you've not come across listeners yet though, you'll need to explore these a bit first.
    Andy.

  • How do change my icon from i photo back to color

    how do i change my icon from iphoto back to color

    What icon? Do you mean the icons on the left hand pane of the iPhoto Window? You can't.
    IPhoto menu -> Provide iPhoto Feedback and let them know what you think.
    Regards
    TD

  • How to change windows icons

    Hİ, 
    İ have apple icons and I would like to change windows 7 icons. 
    How can I do?
    subject edited

    you may need to install 3rd party applications to change the icons.
    which operation system do you have?
    http://www.microangelo.us/mod.asp

  • How to change screen icons and album art?

    Does anyone know of an application, or otherwise know how to change the screen icons individually, one at a time? I don't mean adding or changing to a different summerboard. Ideally, I'd like to change a few of the icons to either photographs from my files, or to some other photo or drawing of my choosing.
    While I'm asking questions, another one concerns album covers in iTunes. ITunes gives you the ability to add more than one cover to an album but I can't see how to display one other than the original one added. Also, I can't see how to delete a cover once it's been added. I was manually adding cover art for albums that didn't have any and accidently put the wrong picture on one album. Nothing I have been able to do allows me to delete that picture. I did add the correct picture but I can't get it to display. Of course, whatever I do in iTunes I'd like for it to properly sync to the touch.
    Any ideas???

    As for your first question, there is no way of changing icons without jailbraking, which we're not allowed to discuss here.
    To view more than one artwork, simply click on the little arrow appearing in the artwork window.
    To delete it, right-click, Get Info -> Artwork and delete the picture.
    Hope this helps.

Maybe you are looking for

  • Intra company sto with excise

    In sto I did 1.Raised a P.O using me21n with doc.type UB 2.VL10b 3.VL02n 4.J1is until this every thing fine. A)when i try to capture Excise Invoice Using J1iex wrt P.O system is not allowing B) i even tried J1IEX without P.O -system is asking for ven

  • WSDL access from Jdev v11.4,

    Hi, We are trying to consume WSDL service ,and are giving url with ipadress something like this http://<ipaddress>:7101/JrnlInfo_JrnlGrp-Model-context-root/AppModuleService?WSDL we are getting the following error oracle.jdeveloper.webservices.model.W

  • Objects no longer auto-aligning with each other

    Hi there, I'm new to Adobe Illustrator CS4 and desperately need expertise. I think the settings got messed with, because now whenever I move an object, it no longer tries to "auto align" with nearby objects or their borders. I don't know what this fe

  • How to Read a String up to a praticular character

    Hi All, This is the String Value "[email protected]" from the string value I have to Read Upto "@" character. Could you hlep me how to Read value upto "@" because I have to sent userName to my target structure. Thanks and Regards, Ashok.

  • Customising the dock via WGM

    Hello I am currently customising the dock for a series of ICT suites in our school, have got everything pretty much looking how i want but i cant get the Network Home to show on the dock, even with it ticked and various options tested. I wonder if i