Changing the garbabe can icon

Is there a way, short of finding the appropriate release of ResEdit, to change the garbage can icon in 9?

Yes, Iconographer can be used to change the icons in the various system resources.
In this case, the Trash icon resources are in the file named System in System Folder.
If you were using ResEdit, you'd need to know the specific ones are in the icl8 and other associated icon resources, open that resource, then open the specific icon resource you want to alter.
However, with Iconographer all you need do is use its Open item in the File menu, navigate to the file System and choose it. After a few seconds a scrollable list will appear showing all the icon resources in System. Scroll down to an item that you want to change, finding it visually or by ID#, double-click it, and it will be opened for you to tinker with. Saving it (File menu) will save any changes to the resource.
The resource IDs for the Trash icons in the System file are -
For the empty (nothing in it) icon:    -3993
For the full (has stuff in it) icon:      -3984

Similar Messages

  • How can we change the default folder icon

    hi, is there anyway we can change the default folder icons of OS X?

    A quick search in these forums for folder icon brings up many hits, including this one: http://discussions.apple.com/thread.jspa?messageID=3792805

  • I would suggest a new feature:The possibilty to change the mouse pointer icon when you hover on an a

    I would suggest a new feature:The possibilty  to change the mouse pointer icon when you hover on an active link by any other one icon I select.

    Current Firefox versions have a feature called tear-off tabs.<br />
    You can detach a tab from the current window and open it in a new window by dragging a tab in the browser window.<br />
    You can drag that tab back to the tab bar in the original window to undo that detaching.
    bug489729 (Disable detach and tear off tab):
    * https://addons.mozilla.org/firefox/addon/bug489729-disable-detach-and-t

  • How do I change the "You can be reached by Facetime at" phone number on my iPad? It currently shows my iPhone number.

    While I can make outgoing Facetime calls, incoming calls are not received because they obviously go to my iPhone number. I assume I need to change the "You can be reached by Facetime at" setting but cannot see how to do it.
    I am using the iPad with retina screen and have just updated to iOS7.

    Her phone number is in my FaceTime settings as well.  I have logged out and logged back in with my Apple ID, but it still shows here number despite the fact I have verified my number is associated with my Apple ID.

  • The environment has changed; the layout can no longer be executed

    Hi guys,
      I`m getting the below mentioned error message when I attempted to "Enter Plan Data" on my Layout
      " The environment has changed; the layout can no longer be executed "
      All I did was to create a Variable in Planning Area and then made adjustments to my Data Column in my Planning Function to include the Variable.
      Please advice soonest possible

    Hi Anurag,
      I have a question of Variable.
      I created a variable CURRMTH on Characteristic Fiscal Year/Period in my PLANNING AREA.
      This variable CURRMTH has the following properties
      Text Replacement : Medium text
      Replacement Type : Fixed Value
      Selection : Fiscal Year/Period is set to 001.2005
      Now, I created a Layout
      Fiscal Year Period in Data Column and Key Figure in Lead Column.
      In my Layout: Data Column tab , I put the following
      Heading : CURRMTH
      Key Figure : NEWLISTKF
      Variable
      Fiscal Year/Period: CURRMTH
      Do you forsee any inconsistencies here ?
      One more question, do I also have to set my Planning Level / Package to have characteristic Fiscal Year/Period to Variable ?
      Please help, mate!

  • How to change The Standard JOptionPane Icon?

    in this simple code
    i want to change the Standard JOptionPane icon to a different icon
    how could it be?
    thank you
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.WindowListener;
    import java.awt.event.WindowEvent;
    import javax.sound.sampled.*;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.ImageIcon;
    import javax.swing.Icon;
    import java.awt.event.*;
      public class MyFrame extends JFrame 
    JLabel label=new JLabel("Hello");
      MyInner inner;
          MyFrame ()
            setupGUI();
        private void setupGUI()
           JFrame f =new JFrame();
        //   f.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
           f.setTitle("Window Event");
            f.setSize(550,350);
            f.setResizable(false);
            f.setLayout(new BorderLayout());
            f.add("Center",label);
            f.show(true);
             inner=new  MyInner();
             f.addWindowListener(inner);
                   class MyInner extends WindowAdapter
           public void windowClosing(WindowEvent ee)
                         Toolkit tool = Toolkit.getDefaultToolkit();
                  tool.beep();
                      JOptionPane.showMessageDialog(null, "Nice Work! " );
                      System.exit(0);
          public  static void main(String[]args)
             MyFrame frame=new MyFrame ();
    }

    For instance:
        class MyInner extends WindowAdapter
            public void windowClosing(WindowEvent ee)
                Toolkit tool = Toolkit.getDefaultToolkit();
                tool.beep();
                JOptionPane.showMessageDialog(null, "Nice Work! ");
                ImageIcon myImageIcon = new ImageIcon("myPic.jpg"); // needs proper path here
                JOptionPane.showMessageDialog(null, "Better Work!", "Dang, I'm smart!", JOptionPane.ERROR_MESSAGE, myImageIcon);
                System.exit(0);
        }

  • How to change the node's icon in a tree when the node collapse or expand?

    how to change the node's icon in a tree when the node collapse or expand?

    Hi,
    You may need to use custom skin for that.
    -Arun

  • How do you delete a picture that does not have the trash can icon to do so.

    I Am trying to delete a picture and it does not have the trash can icon. 

    You have to sync it off of the device using iTunes. That is likely how it got there in the first place.
    See:
    http://support.apple.com/kb/HT4236

  • HT4207 How do I move the trash can icon up to the top of my gmail bar on my iPad2?

    Using gmail on my iPad 2:  How do I move the trash can icon up to the bar at the top of my gmail?

    You can't with the default Mail app.  Try using the Gmail app... much easier to use and the Trash is easily accessible, even with lots of labels.

  • Changing The Default Window Icons

    Is there a way to change the MDI Window Icon when the Form is run on the web. Changing the icon in client/server seems to work well with the following (attached d2kwutil.pll):
    declare
    a pls_integer;
    begin
    a := win_api_utility.get_active_window(false);
    win_api_session.change_mdi_icon(A,'newiconfilename',0);
    end;
    The problem with this is that it will always raise an error on the web because It cannot get the handle for the window (Frame) in Java. Is there a way to change the icon or am I just shooting in the dark. Any help would be appreciated.
    null

    hi sir
    my name OSAMA and wanna your help in changing MDI window
    i trying this code
    I am trying this code
    Declare
    hWin pls_integer := win_api_utility.get_active_window;
    Begin
    WIN_API_SESSION.CHANGE_MDI_ICON(hWin,'e:\e.ico',0);
    End;
    I have error
    frm-40734: internal error :pl-sql error occurred
    sorry but this is an urgent problem
    thank you sir
    osama

  • I forgot my restrictions passcode, if I do a restore to new with my phone and change the passcode, can I then backup from a previous restore

    I forgot my restrictions passcode, if I do a restore to new phone in iTunes and change the passcode, can I then backup from a previous restore to put everything back onto my phone.

    No you cannot. The restrictions passcode is part of the backup, and if you restore to a backup that contains the restrictions passcode, you will be right back where you started. Only alternative is to restore the device as new, or if you restore to a backup, it has to be before the restrictions passcode was entered into the phone. However, that could mean that you would be restoring to a date that does not contain all of your data.

  • How to make my mail go into the trash when I select the trash can icon

    Nonsensically the default behavior for mail from google (setup either as push or fetch) is for the trash can icon to archive the mail (drop it into all mail) rather trash it. I was able to correct this behavior for the fetch mail account but for the mail setup as push I see no option. Can anyone tell me how to fix this?
    What kind of drugs were the designers on where they thought I would like to either archive all my junk mail or better yet have to login from my desktop and re-review it and then delete it again. That sounds GREAT for productivity! ***?

    tikvenik wrote:
    This is definitely an apple problem and not a google issue as plainly demonstrated by the fact that there is a setting located at:
    settings -> mail, contacts, calenders -> "account name" -> Advanced -> Deleted Mailbox
    It defaults to "all mail" but you can correct it to "Trash"
    The option simply isn't there for accounts setup as push. I am absolutely dumbfounded by this. How can they not fix such a simple yet ridiculous problem? There is no functionality to delete mail from my iphone.
    An option that's there when the account is IMAP but not there when the account is Exchange, and somehow that must be the iPhone's fault? When creating a calendar event for a 'local' calendar on the iPhone, I can set two alerts, but when I create a calendar event for an Exchange calendar, I don't have that option and am limited to just one. You might think that's plainly an Apple problem, but you'd be wrong since Exchange calendar events don't support multiple alerts.
    Point is, this is more likely a Google issue than an Apple one. Note that Google Sync and Gmail push email are beta products. There are a whole bunch of known issues that pertain to Google Sync and different mobile devices.
    But, you cam blame it on Apple if it makes you feel better...

  • Have downloaded itunes in my laptop and downloaded around 200 apps. now want to change the laptop. can all the apps can be transfered to new laptop

    have downloaded itunes in my laptop and downloaded around 200 apps. now want to change the laptop. can all the apps can be transfered to new laptop

    See Here  >  Download Past Purchases
    http://support.apple.com/kb/HT2519
    ajsmas wrote:
    now want to change the laptop. can all the apps can be transfered to new laptop
    From your OLD computer...
    Copy your ENTIRE iTunes FOLDER to an External Drive... and then from the External Drive to your New Computer..
    Full Details Here  >  http://support.apple.com/kb/HT1751

  • Apple just changed the top charts icon on the iPad app store

    Apple just changed the top charts icon on the iPad app store .. That reminds me didn't the iPad have genius for apps when it was introduced in january .

    Nevermind I figured out how to turn it on you go to settings app store view account scroll down to turn app genius on .

  • How can i change the Director App Icon for Windows?

    How can i change the icon for my App for Windows? Director can do this from the Publish Settings. The Custom icon for app doesn't work. I select a .ico file for windows and Director can't attach this to the app.
    There is anothe way to do that simple like in Mac with the Contest folder?
    Regards
    Gino Delgado

    You can also try my RiEditor here: http://www.director-online.com/dougwiki/index.php?title=Resource_and_Icon_Editor
    However, to answer your original question directly, I suspect there's something wrong with your .ico file as the feature in the publish settings works just fine, last I tried.

Maybe you are looking for

  • Vendor Account Balances

    Hi Experts, I want to get both opening and closing Vendor balances by period wise. I know the tables are BSIK and BSAK, but I would like to know whether any FM's or BAPI's available for an efficient way to generate the reports. Pls advise. thanks & r

  • Why can't Apple make 'publish changes only' for non .mac users?

    The recent iWeb update to 1.1 and the now increasingly obvious differential between .mac and non .mac features has prompted me to post here today. I can understand comments, passwords and search facilities being a .mac only experience because it requ

  • Profit loss

    Hi ALL, We created purchase order for the item  in which the G/L account is managed by Item Group. In Item Group -->>Inventory Account is one of the Asset drawer Account.(material and Consumable),then created Invoice. but when we are generating profi

  • Everytime I sync my computer puts all of my apps onto my iPhone when i dont want it to.

    Antime I sync my iPhone on my computer it puts all the apps on my computer (which came from my iPod Touch (4th generation)) but I don't want them to.

  • I designed a site in Adobe Muse but forgot to add the H1 tags after I made it live.

    I designed a site in Adobe Muse but forgot to add the H1 tags after I first made it live. Will this effect my google analytics ? if so how can I make sure that the H1 tags are picked up early in the html by the google search spiders instead of way do