Change Icon To My Own Picture

I want to change the iTunes icon, with one of my own pictures is there anyway to do this?

Get info (cmd+i) on iTunes.app, select the little icon in the upper left so it has a blue surrounding and paste another icon (cmd+v) in. You need to copy another icon or compatible image to the clipboard first (cmd+c). To play around you can create new empty folders and give them icons from apps.

Similar Messages

  • Import your own pictures/icon in logic?

    Hi,
    I was just wondering if it's possible to import your own pictures, e.g synth pics, into logic so that you can select them as the icon for that track?
    On the left hand side where you can change the icon of each track, if you click-hold on the icon it gives you a lot of icons to choose, but i'd like to use a few of my own.
    thanks for any help and advice,
    Tom

    Have you looked in the manual (search for ICON)?

  • After updating to newest, firefox the change icon in properties (bookmarks) is missing, can I get it again somehow? Since I like to make my own icons in bookmark toolbar

    I have made a bookmark toolbar with all my fav sites, a lot of sites have not made a icon logo, so I make one,,, By using the change icon in properties (right click on the icon) But this feature is not in the newest firefox update.
    How can I get it again? is there a specific extension fx??

    Perform the suggestions mentioned in the following articles:
    * [[Latest Firefox issues#os=mac&browser=fx9|Icons missing in the Bookmarks menu]]
    Or use this extension to restore missing Favicons --> '''CheckPlaces 2.6.1'''
    * https://addons.mozilla.org/en-US/firefox/addon/checkplaces/
    Check and tell if its working.

  • How to change icon of a Folder-track?

    By Folder-track I mean the Folder in Arrange window that is created from "packing reions". Is that even possible in LogicPro7 - to change it's icon?
    I mean I know how to change icons for my audio tracks, audio-instrument tracks. And it would be nice if I can assign different icons for different Folder-tracks.
    I did not find how to do that

    It is possible... use option-command-hold on the icon of the folder in a track in the arrange and up pops the many icons to choose from.
    You can set the icon to something other than the folder.
    To make different folders I guess you would have to do some image editing
    and make your own icons but that is pretty easy.
    Put your user create icons here...
    ~/Library/Application Support/Logic/Images/Icons
    and logic will load your numbered image file instead of the default ones that
    Logic would normaly use.
    Note: 1.png is the file name of the regular folder icon.

  • Trouble changing icon in any application, file, etc etc

    I've followed the instructions to change an icon and have done it before with success. But it's not working anymore? Here are the steps i'm doing.... Am I missing something?
    1. right click on icon that i want to use as the "new icon"
    (i believe this is the problem... preview.app is opening the icon. with in get info, the "icon" at the top is just your generic "jpeg" icon. In the "preview" window towards the bottom shows a picture of the icon)
    2. select get info
    3. right click on "icon" at top of preview window
    4. cmd c to copy (also tried copy from file drop down)
    5. repeated step on target app to chang icon
    6. cmnd v to paste (also tried to paste from file drop down)
    doesn't change the icon on the target app or file etc etc....
    signed.... confused?

    OK, try doing both a SMC and PRAM reset and see if either takes care of the problem.
    iMac
    SMC & PRAM Resets
    There are a couple of things you can do before heading off to the Apple store, a SMC and PRAM resets. To do these:
    _SMC RESET_
    • Shut down the computer.
    • Unplug the computer's power cord and all peripherals.
    • Press and hold the power button for 5 seconds.
    • Release the power button.
    • Attach the computers power cable.
    • Press the power button to turn on the computer.
    _PRAM RESET_
    • Shut down the computer.
    • Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    • Turn on the computer.
    • Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    • Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    If it still doesn't work then try restarting in Safe Mode, this will clear out some caches which have become corrupted. http://support.apple.com/kb/HT1455

  • How to change icons of a JTree node dynamically

    Hi all!
    I want to change icon associated with a node dynamically ( i.e. after the tree has being displayed). How can i achieve this?
    Can any one provide me a sample code snippet.
    Thanks in advance
    Murali

    I have created CustomCellRenderer and i'm calling this class as follows
    tree.setCellRenderer((TreeCellRenderer) new CustomCellRenderer(true));
    The boolean value for the constructor (in this case it's true) will be set to
    a local variable in the CustomCellRenderer class. Then upon clicking a node in the tree the boolean value (true) is set and the icon for that node should be changed as specified in the CustomCellRenderer class.
    When i click on a node all the icons of that tree are disappearing.
    Can any one help me in this issue
    public class CustomCellRenderer
              extends          JLabel
              implements     TreeCellRenderer
    private ImageIcon          grayfolderImage;
    private ImageIcon          greenfolderImage;
    private ImageIcon          bluefolderImage;
    private ImageIcon          redfolderImage;
    private ImageIcon          whitefolderImage;
    private boolean               bSelected;
    boolean logfileDeleted;
         public CustomCellRenderer()
              grayfolderImage = new ImageIcon("C:\\images\\grayFolder.gif");     
              greenfolderImage = new ImageIcon("C:\\images\\greenFolder.gif");     
              bluefolderImage = new ImageIcon("C:\\images\\blueFolder.gif");     
              redfolderImage = new ImageIcon("C:\\images\\redFolder.gif");
              whitefolderImage = new ImageIcon("C:\\images\\whiteFolder.gif");     
         public CustomCellRenderer(boolean logfileDeleted){
              this.logfileDeleted = logfileDeleted;
         public Component getTreeCellRendererComponent( JTree tree,
                             Object value, boolean bSelected, boolean bExpanded,
                                       boolean bLeaf, int iRow, boolean bHasFocus )
              // Find out which node we are rendering and get its text
              DefaultMutableTreeNode node = (DefaultMutableTreeNode)value;
              String     labelText = (String)node.getUserObject();
              this.bSelected = bSelected;
              // Set the correct foreground color
              /*if( !bSelected )
                   setForeground( Color.black );
              else
                   setForeground( Color.red ); */
              // Determine the correct icon to display
              if( labelText.equals( "ioexception001" ) )
                   setIcon( redfolderImage );
              else if( labelText.equals( "ioexception002" ) )
                   setIcon( greenfolderImage );
              else if( logfileDeleted ==true )
                   setIcon( whitefolderImage );
              else if( labelText.equals( "ioexception004" ) )
                   setIcon( redfolderImage );
              else
                   setIcon(bluefolderImage);
              // Add the text to the cell
              setText( labelText );
              return this;
         // This is a hack to paint the background. Normally a JLabel can
         // paint its own background, but due to an apparent bug or
         // limitation in the TreeCellRenderer, the paint method is
         // required to handle this.
         public void paint( Graphics g )
              Color          bColor;
              Icon          currentI = getIcon();
              // Set the correct background color
              bColor = bSelected ? SystemColor.textHighlight : Color.white;
              g.setColor( bColor );
              // Draw a rectangle in the background of the cell
              g.fillRect( 0, 0, getWidth() - 1, getHeight() - 1 );
              super.paint( g );
    }

  • Since Mavericks Update, changing icons just displays generic thumbnail

    Since I updated to Mavericks, I can't change icons without the icon just changing to a generic PNG or JPEG thumbnail (see attached picture).
    Steps I'm following-
    CMD + I on the icon I want to change.
    Copy picture (PNG or JPEG) to clipboard
    Select icon in upper left-hand corner of info page and choose Paste or hit CMD + V
    Has anyone else experienced this?  Interestingly, any custom icons I created in Mountain Lion continue to work as they did.

    I am also using the latest version of Mavericks and funny thing, I was having this problem today installing a new Time Machine disk and I wanted to change the icon.  No matter what I tried, the icon image would only show (in the get info pane) as a "PNG" or TIFF or what ever format the picture came in.
    I do not know if it was dumb luck but I took the picture (Ironman Teseract) and opened the JPEG in Photoshop CS6.  I then cropped it the way I wanted and saved it to the desktop.  During the save, PS asked me if I wanted to save the embedded color profile or use Photoshops.  I choose Photoshops and saved it. 
    I grabbed the icon picture and dragged it onto the picture of the TM drive in it's "get info" pane.  It worked.

  • Change file path of embedded pictures

    I'm sort of a beginner with Applescript, but I created an application in it that takes screenshots of different web pages and saves them in my Pictures folder. I have a proposal template in a Word document that has these pictures linked and embedded into it. Whenever I want to create a new proposal, I run the application and get the specified images I need, and update the links in the Word doc so that the new images display. I then break the links and save the doc as something else. 
    Anyway, I have a colleague who would like to use this application. The files in the Word doc are linked to Macintosh HD/users/Me/Pictures. How can my colleague easily set all the images in the Word doc to their own file path, ie Macintosh HD/users/MyColleague/Pictures?
    Something like
              tell application "Microsoft Word"
                        set the path of active picture to "Macintosh HD:Users:MyColleague:04-ReportMenu.jpg"
              end tell
    Multiple salespeople will eventually be using this script. If I could add a function into my Applescript app so that whenever the proposal template is opened, the path to the images is changed to that users's picture folder, that would be amazing. Other solutions are welcomed.

    Sure, thanks for the reply. My organization created a sales proposal generator in Word. It creates a sales proposal based on some user inputs. Embedded in the proposals are demonstrations of our product in the form of screenshots of our product from our website. One of our designers updates the standard images with customized branded images for the client we are pitching. It's very time consuming to get these new branded images from the web, crop them and swap them out in the Word proposal, so I created an app that will do it. The app visits a list of pages, takes a screenshot of the Safari window and pastes a named image in my Pictures folder. I embedded the images in the Word doc so that they link to my Pictures folder. All I have to do is update the links and I have a new branded proposal. It works great on my own machine, but if I share it, the path obviously breaks and the Word image update doesn't work.
    Here's a snippet of my code. The following takes a screenshot of our site and saves it in Pictures:
      -- Report Screenshot
      delay 1
                        tell application "Safari" to set the bounds of the front window to {0, 20, 915, 935}
                        delay 0.1
                        tell application "Safari"
                                  tell window 1 to set URL of current tab to "https://website.com/demox?rm=report"
                                  delay 4
                        end tell
                        do shell script "screencapture -o -l$(osascript -e 'tell app \"Safari\" to id of window 1') ~/Pictures/05-Report.jpg"
              end tell
    The links in Word update to the brand-specific images I just grabbed once I select Edit -> Links -> Update Now
    I need a quick way, in Applescript, to update /Users/me/Pictures/photo.jpg to Users/MyColleague/Pictures.jpg in Word. Does this help at all??

  • Any chance of using my own pictures to transition through menus?

    does anyone know how to add a picture to the transitions between Menu and Menu/track to the list of transitions in the inspector?
    i am using the marque for my start menu. would like to use my own pictures to transition through between menu and menu and menu and track. any chance i can do that?
    i've tried adding the pictures to the transitions folder in DVDSP app support .
    and changing the extention. but still can't get it to work.
    i'm creating the pictures in photoshop.
    thanks
    cb

    Okay. i did go to the menu, and transitions in inspector tab.
    for the start picture i picked the Marque (this is a template), then i want to transition into and through a picture i made in Photoshop and then the end image will be the submenu which in this case is the theater interior.
    I'd also like to use that same picture to transition from the submenu choices to the different tracks (in this case 4 different tracks).
    if i use a picture, and i put that picture into a file i create in Library/application support/DVDSP/cityscape folder (which is what i named the picture AND the folder), and that now comes up in the list of transitions in the inspector in DVDSP after i highlight the menu like you suggested, and i choose the picture for the transition, it seems that i cannot fade from first image to picture and fade back to last image which would be the submenu image.

  • Change icon for S object in PPOME

    Hello!
    Do you have any idea how to change icon for position like it works for manager (012 connection type)? I'd like to create my own indication for special statuses of position.
    SAP offers standart solution http://help.sap.com/saphelp_nw04/helpdata/en/24/1188b3cbc711d2b49e006094b9c9b4/content.htm
    but it's disabled as SAP Support Team said.

    Hi,
    Not sure it will help.Have a look at
    SPRO> Personnel Management> Organizational Management>Hierarchy Framework
    Manoj.

  • I don't want to buy a calender I want to print the one I made on iPhoto with my own picture pages.

    I don't want to buy a calender I want to print the one I made on iPhoto with my own picture pages. There is also a problem with the cover page. Ihe title will not present the same in the source column as is on the larger picture, and It won't let me change it.
    Virginia

    Do NOT buy the book
    Preview the calendar exactly the same way you preview the book
    Preview the calendar the same as a book -
    or with really minor edits
    Preview the calendar using this method - http://support.apple.com/kb/HT1040 - and save the resulting PDF and print it
    LN

  • How do I change icons in my favorites toolbar?

    I am migrating from IE to Firefox. So far, I really like the overall look and feel of the interface, and I like the ability to create it to look and function the way I want it to.
    I was hoping to be able to customize my bookmarks by creating my own Icon files as I have in Internet Explorer. For example, in IE I can right click on the bookmark in the Favorites toolbar, select Properties from the pop-up menu, then select the Change Icon button, and I can select any icon file which I have created. The graphic then appears in the bookmark. I love it! Can I do this in Firefox?
    Thank you for any information,
    Joe

    Firefox doesn't have that feature by default, you can add that feature with this add-on.
    https://addons.mozilla.org/en-US/firefox/addon/favicon-picker-2/

  • Change icon &  time of the documets display

    How to Change icon &  time of the documets display
    I think Portal's icon is not good to look.
    I also  want Lastmodified  time to display date.How to do it?
    thanks for your help.
    points Awards

    Hi Han,
    the icons are saved under /etc/public/mimes/images
    You can go to KM Content and upload there your own icons and either you replace the SAP standard name (ie: document.gif) what I would not recommend or the better solution would be to change the KM Configuration (Content Management -> Utilities -> Icons) so that your own icons are associated with some MIME types.
    To change the format of the last modified property go to KM Configuration -> Content Management -> Global Services -> Property Metadata -> Properties. Search for "cm_modified". You could change the property type to "Date" but the solution I would prefer is to add following string in the parameter "Additional Metadata":
    customFormat=MM/dd/yyyy or customFormat=dd.MM.yyyy
    Hope this helps,
    Robert

  • Add change Icon in the Table Control tool bar.

    Hi Abapers,
    I need to add "change" icon in the table control. I added it but when I click on it is not working.
    My requirement is that when I run my custom report, all the fields should be shown is in display mode. Then when I click on the "change" icon, all fields should be enabled for change.
    I have already referred to the standard progs BCALV_* but it does not have the "change" icon.
    plz give me any reference prg or sample code.
    Thanks
    Nani.

    Hi Nani,
    Track the function code of change icon in user command. if it is clicked then put a flag eq X.
    check that flag in PBO, if it is eq X then screen-input = 1 or vice versa.
    try this code:
    in PBO:
    LOOP AT SCREEN
    IF WS_EDIT = 'X'
    SCREEN-INPUT = 1
    ELSE
    SCREEN-INPUT = 0
    ENDIF
    MODIFY SCREEN
    ENDLOOP
    Hope it will work fine
    Regards
    Krishnendu

  • Change icon for file type

    how to change icon for all of the tile type? not just one, but all!

    Changing the file icon will not enable Quicktime to play Matroska files. Changing the file suffix might.
    It could be a 'difficult' form of Matroska file. FYI Matroska is just a container like MOV or AVI, and some mkv have the video encoded with Real Video Codec (RV9 RV10). Perian+QT can't decode this, but VLC will play .mkv files just fine on OS X, as long as they don't use H.264!
    It's a bit of a lottery until Matroska decide to support the Apple platform. I have found this:
    http://mkv4mac.free.fr/index.php?lang=en&p=lec
    which may help.
    But there may be another workaround: 1. Get Info the mkv file
    2. Change to extension to wmv. Save as wmv and that could work better.
    Or this link may be helpful:
    http://www.squidoo.com/mkv-converter-mac
    Recently, a poster (ZachP14) suggested this:
    "There's a program called Plex that runs .mkv files awesome on my 2.0 ghz macbook."
    http://www.plexapp.com/
    Maybe worth a try?
    More information here:
    ttp://en.wikipedia.org/wiki/Matroska

Maybe you are looking for