New icon color horrible! (1.0.9)

Why did you change the soft green color to a screaming teal? It's absolutely disgusting.

Looks OK on a smartphone or even a tablet but on a 27" display looks horrible, its out of keeping with every colour on my system, no other company of the many programs on this PC has decided to use a hi-vis jacket colour, it's a blot on my desktop, fortunately there are more alternatives to Spotify than ever. What looks OK or works on a small screen can't just be moved over to a desktop, MS learned that hard lesson with Windows 8 - it's like King Canute trying to hold the tide back as Spotify eventually fix one problem they go and make other on the same day, & seem proud of it which beggars belief ~ (we've changed the colour, nice isn't it - No it is not, it's bloody dreadful with huge bells on)

Similar Messages

  • Add new ICON on ME22N

    Hi All,
    Anyone know how to add NEW ICON on the input screen at the following location:
    /nME22N
    -> select one Purchase Order for Services
    -> select one Item Line
    -> at "Services" tab on Item Details Level
    -> Add new ICON behind "Serv. selection"
    Please help!!
    Thanks and Best Regards,
    Neil

    Hi,
    Please check this sample program to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    * Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    * Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    * For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    To learn a BADI the best place are:
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/19756543b111d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9d/12233a0edd7978e10000000a11402f/frameset.htm
    /people/sergey.korolev/blog/2005/03/14/the-time-for-me-to-have-a-badi-of-my-own
    BADI comprises of 2 parts:
    First is definition which you do in SE18.
    Then comes the implemantion where you will write your custom code in SE19.
    Try to go through the link, you will get enough info to proceed .
    Also check this example ...
    First you need to implement the 2 BADIs in SE19.
    The BADI ME_GUI_PO_CUST is responsible for Screen display and data exchange b/n db and the screen.
    The second BADI ME_PROCESS_PO_CUST is responsible for PO upadate.
    To get the screen in the Transaction you need to code in the method SUBSCRIBE of the first BADI.
    Example:
    ls_subscriber-name = subscreen4.
    ls_subscriber-dynpro = 0700.
    ls_subscriber-program = prog_name.
    ls_subscriber-struct_name = structure.
    ls_subscriber-label = TEST.
    ls_subscriber-position = 4.
    ls_subscriber-height = 6.
    ls_subscriber-height = 8.
    append ls_subscriber to re_subscribers.
    clear ls_subscriber.
    Regards,
    Ferry Lianto

  • The new ios7 is horrible how can i downgrade? my messages keeps freezing im frustrated im very close to going ANDROID any one can help how do i get in touch with apple directly?

    the new ios7 is horrible how can i downgrade? my messages keeps freezing im frustrated im very close to going ANDROID any one can help how do i get in touch with apple directly?

    gorxxx83 wrote:
    the new ios7 is horrible how can i downgrade? my messages keeps freezing im frustrated im very close to going ANDROID any one can help how do i get in touch with apple directly?
    Downgrading is not supported.
    Here are some basic troubloeshooting tips:
    - Quit the App by opening multi-tasking bar, and swiping the App upward to make it disappear.  (For iOS 6, holding down the icon for the App for about 3-5 seconds, and then tap the red circle with the white minus sign.)
    - Relaunch the App and try again.
      - Restart the device. http://support.apple.com/kb/ht1430
    - Reset the device. (Same article as above.)
    - Reset All Settings (Settings > General > Reset > Reset All Settings)
    - Restore from backup. http://support.apple.com/kb/ht1766 (If you don't have a backup, make one now, then skip to the next step.)
    - Restore as new device. http://support.apple.com/kb/HT4137  For this step, do not re-download ANYTHING, and do not sign into your Apple ID.
    - Test the issue after each step.  If the last one does not resolve the issue, it is likely a hardware problem.
    If you want to contact Apple directly, call 1-800-MYAPPLE (1-800-692-7753), or go to getsupport.apple.com. 
    Don't waste your time asking for a downgrade of the iOS.  That's not an option.

  • Best way to alter Icon color/brightness

    Hello everyone,
    I would like to know what's the best/easiest way to alter the color and brightness of an Icon IE in a JLabel.
    I wish to do something like this:
    In a panel:
    JLabel picture = null;
    picture = new JLabel(new Icon(new BufferedImage(...));
    picture.setText("");
    add(picture);and then have two methods (IE: picture.shade() and picture.unshade()) to darken and brighten the icon in the JLabel at will, to simulate "active" and "not active" statuses.
    Thank you in advance!
    Fabio.

    FabioFranchello wrote:
    JLabel picture = null;
    picture = new JLabel(new Icon(new BufferedImage(...));
    You can't create an instance of Icon since it's an interface, you should create an ImageIcon:
    JLabel picture = new JLabel(new ImageIcon(new BufferedImage(...));
    picture.setText("");This is unnecessary - picture text is already the empty string.
    and then have two methods (IE: picture.shade() and picture.unshade()) to darken and brighten the icon in the JLabel at will, to simulate "active" and "not active" statuses.You will need to change the brightness of the image: [http://java.sun.com/developer/JDCTechTips/2004/tt0210.html]

  • ITunes icon color

    Has anyone noticed this? In the older versions of iTunes the icon was blue, then it switched to green, now it is blue again? Is there any significance as to why the icon color keeps changing?

    I don't think there's any significance as to why the colour of the icon changes from version to version except to indicate that this is a "new" version. The blue is more appropriate for iTunes simply because the highlight colour on the iPod and default highlight colour on the Mac is blue.

  • NI Icon Library -- post new icon suggestions here

    The NI Icon Library is available here:
    http://www.ni.com/iconlibrary
    If you have suggestions for new icons that should be included, or just
    want to share interesting glyphs with other users, post them to this
    discussion topic. Please only post icons that are clear of any
    copyright issues so that other users do not have to worry about using
    them in their own VIs.
    You may wish to review the Guidelines For Creating Icons if you want to submit your own artwork.
    Message Edited by Aristos Queue on 08-10-2007 03:40 PM

    I noticed that the icon PNG files include tranparacy.  That's indeed very important when adding glyphs to an icon.   However, the Labview icon editor doesn't support transparacy.  That makes the glyphs very difficult to use in the icon editor !   You always destroy too much of the underlying icon.
    I think the usability of the icon editor would dramatically increase when it supported transparacy.   Doesn't have to be true transparacy.  It simpy shouldn't write a pixel when it's the background color.   (Something similar to what MS-Paint does with it's 'transparant paste'.)
    Another usefull feature would be anti-aliased text.   I now do that manually, and it can help a lot in some cases.
    Finally, maybe the icon editor could have a scrapbook added...   Some extra part, where one can 'store'  often used parts of icons, and play with them, putting them together.   I now generally do that in MS-Paint, so that I can more easily try out some ideas on how to create the icon.   Maybe couple this scrapbook to the project or lv library...
    To keep on-topic I'll also include an icon. 
    I didn't see any 'Front Panel'  icon. I have had a couple of vi's controlling acces to the front panel.  I used the following icon, together with a lock/unlock glyph at the bottom:
    All hand-painted, so no copyrights.
    Message Edited by Anthony de Vries on 10-08-2007 05:37 PM
    Attachments:
    frontpanel.PNG ‏1 KB

  • Can I have "All spots to process" checked at all times, even for new spot colors?

    When I check “All spots to process” in the pdf export settings and save my settings the settings remember that I've checked this option. But, if new spot color objects using new spot color swatches are added to the document (or another document) and I go into the pdf export settings the check mark has been changed into a dash (with the actual checkbox highlighted) – signifying that only some of of the spot colors will be changed to process colors during export. I absolutely fail to see how this could possibly be seen as a feature and not a bug … if the user has checked “ALL spots to process” wouldn't the user expect ALL spots to be converted to process colors, rather than just any spot colors that happened to be in the document that happened to be open when the user first checked that checkbox and saved that setting?
    Am I missing something here? What's the point of even having that checkbox as part of your saved export settings if it doesn't include any other spot colors than those used when saving the settings?
    What's the point of having settings if you can't trust them, and still need to manually "override" them every time?
    I see that some users have taken to writing scripts that instead turn all spot colors in the swatch panel to process colors, and while I commend them for creating that workaround, I'm still pissed at Adobe for not getting the function right.
    If this is a feature, who is it for? People who want to add just certain spot colors and turn those into process colors rather than turning all spot colors into process colors are surely better off doing that in the swatches panel, where they're in total control of what's what. And if they don't want to "permanently" change their spot colors to process colors, and prefer to (temporarily) convert them during exporting/printing only, they can do that in the ink manager. But when someone checks convert "All spots to process" couldn't we safely assume they really want ALL spot colors to be converted and not just some of them? I mean, the way that checkbox behaves now, it's like it's a button and not a checkbox. As in: hit the button "All spots to process" to switch all currently viewed spot colors to process colors in the ink manager, OR check the "All spots to process" checkbox to always convert ALL spot colors to process colors during exporting/printing.
    Anyone got any light to shed on this?
    And is there a way to actually get the advertised behavior, because if you have to run a script every time you export/print you might as well just manually select the checkbox every time instead, but either way it's just really unnecessary as far as I'm concerned … Adobe should get the feature right instead.
    If you save a setting and recall it, it shouldn't be possible for that setting to change into something else (in this case changing a checkmark to a dash).
    Clearly CMYK printing is the norm, so for most users it would make a lot of sense to have the "All spots to process" checked most of the time, and then you just go into the swatches panel or the ink manager and set things correctly for those print jobs that really do need spot colors.
    I myself am not one of those who add spot colors to my swatches unless I'm really using them as spot colors, but I often work with magazines and folders featuring adverts made by whoever, and typically there's always at least one advert that features spot colors, and therefore it would be very nice if the "All spots to process" feature actually worked as advertised without any required actions from me.
    We stopped sending ads back to the advertisers for adjustments a long time ago, unless we absolutely had to, because there were so many things wrong with so many ads that it was simply too much work to write back and explain everything to people who most of the time didn't even understand what we were talking about. We found that it was usually a LOT faster and easier to just adapt the ads ourselves, as long as it was something that could be worked out really quickly from within InDesign itself, which pretty much included most typical errors.
    But with this feature I find Adobe is trying to make my job harder rather than easier, and it's pissing me off. Arrrghh… ;-)

    But It's not a preference it's a shortcut
    It's a bad joke, is what it is. ;-)
    So, why in your opinion should it be presented the way it is? I keep saying in it's current functionality it shouldn't be presented the way it is (and that: if it is, it shouldn't work the way it does). If it's not a preference or even a proper checkbox, why present it that way?
    If you put it right next to the table at the top of the window (so that it's directly associated with that information, rather than information right above it) and just called the checkbox “Spot(s) to process” and had it only visually reflect the content of the sleected spot colors in the table, then I'd see your point with likening it to the “Hyphenate” checkbox.
    If a story has two selected paragraphs that uses two different hyphenation settings then the checkbox should present the way it does now, but if you hit the checkbox so that both paragraphs now use hyphenation and create a third paragraph inbetween the two previous ones it better inherit that setting and not turn off hyphenation for the new paragraph (unless of course there's a defined next paragraph style that switches to a style with hyphenation turned off). And if that checkbox said “Hyphenate all paragraphs” instead, then I would expect it to do just that, and not just the selected ones, and not just the current paragraphs but quite literally all paragraphs even newly created ones – otherwise it doesn't do what it says it does, and simply shouldn't be labeled that way.
    And seriously bad interface design aside, you'd have to rename “All spots to process” to “Switch all currently displayed spot swatches listed in the table above to process” to actually describe what that checkbox does. So even if you're a fan of the current functionality, as opposed to one that actually lets the user set and forget a setting like that, and think it's better that users manually check it repeatedly (which I'm not saying that you are, but you're not giving me any feedback suggesting you even see my point of view with any of this, so what do I know?), then why wouldn't you still support an interface that visually matches/signals that functionality better? If it's a “Select all” checkbox supplementing a table containing a column of checkboxes, then present it that way. Don't put it at the bottom of the window next to another checkbox that works just like a regular checkbox and label it “All spots to process” – because that way you are signalling a different behavior.
    Seriously, if I was to do design using the same mentality that Adobe uses when designing their user interfaces it wouldn't be long before I lost all clients. There's a lot to be said for de facto monopolies, I suppose. Oh no, there's nothing wrong with the design, just as long as you accept it on it's own terms and don't compare it to anything relevant, and just as long as you give people enough time to understand and accept it … and surrender to it.
    For real … I wouldn't win one single pitch that way.
    Today's threads have in many ways been a thorough reminder of the following quote from the second link I provided:
    Is there an Internet rule yet stating that even the most obviously indefensible mistake will eventually be defended by someone somewhere? Awful marketing efforts get explained as genius viral campaigns, broken features become solutions.
    And whether or not you're able to see my point of view or not is really besides the point too.
    The real point was, and remains to be:
    That for those who receive lots of ads or other external files that may or may not contain spot colors it would be far more useful to be able to set a checkbox to always convert all spots to process when exporting, than the current functionality is (and I'm not suggesting eliminating the current functionality, just change so it's presented like what it really is, and then just let that separate checkbox do what it says) … causing unnecessary manual action on the user's behalf shouldn't be the business of Adobe – preventing it should.
    And here's further reading on the subject of bad Adobe interface design for those who might feel so inclined. ;-)
    Cheers!

  • How do you add a new icon to the home screen?

    How do you add a new icon to the home screen?

    The only new icons you can add to your home screen are webclips, which can be added by using the "+" button in safari on the desired web page.
    You won't be able to add new apps until February when the SDK is fully seeded to developers.

  • AT&T US Lumia 900 Tango update + new pink color

    My apologies if this was already reported:
    http://blogs.att.net/consumerblog/story/a7782923
     New pink color available starting July 15th, Tango update "in the coming weeks".
    Thanks to Paul Thurrott for the tip:
    http://www.winsupersite.com/blog/supersite-blog-39/windowsphone75/pink-nokia-lumia-900-software-upda...

    My Zune software does not display this update. Why so?

  • Illustrator CS4, new Pantone color books, color channel issue

    Since I installed the new Pantone color books, I've been running in a major issue which will affect our whole production line.
    If an Illustrator CS4 file contains a Photoshop CS4 image which is using an "old" Pantone color in a color channel, it cannot be opened and I get an error message "File is unreadable". If I replace the "old" Pantone colour with its new equivalent in the color channel in Photoshop, the file can be opened normally.
    In our work environment, this means going through all our images to check which one is using a color channel. A painful and time wasting procedure. Furthermore, if one of our suppliers doesn't have the new color books, they won't be able to open any of the files, both Photoshop and Illustrator, so they have no way to revert back to the old Pantone.
    Is there another way to fix this?
    Thank you

    More on the Pantone PLUS saga, hoping to get some input from the users of this forum. I find their silence deafening, to say the least. This is a serious issue, that will cost our agency hours and hours of work if it isn't addressed. And we've already wasted hours of troubleshooting and discussions on how we could resolve it.
    We're actually testing a workaround: using both the old and the new libraries in Illustrator. After consulting our suppliers, we've learned that this is what they also do. For them, it's a one shot to get the file to print. For us, it means cheating with files that will get edited again in the future. And the Pantone installer removes the old Pantone books from the Adobe folders for a reason which is mentioned on the download page:
    The reason that the PANTONE Color Libraries that had been built into Illustrator need to be removed and replaced with the PANTONE PLUS Color Libraries is that, in Illustrator, a PANTONE Color can only have one data point with which it is associated. In the short term, in order to benefit from the new colors and data associated in PLUS, the PANTONE Libraries that are installed with Adobe Illustrator are removed and replaced with the new PLUS Libraries.
    http://www.pantone.com/pages/Pantone/Pantone.aspx?pg=20721&ca=1
    I worry this may lead to another bunch of issue, knowing how easily AI files get corrupted. What I need to know is:
    What is the exact meaning of the Pantone warning about the "one data point per color?
    What are the long term implications of using both Pantone libraries in an Adobe file? Or in the Adobe app?

  • New icon on screen - yellow circle with white lines with a 1 next to it - what is it please?

    Hi.
    New to hear so please bear with me..
    i have had my blackberry for about a month and a new icon has appeared (next to where the message icon normally sits). It shows a '1' next to a yellow circle with white lines through it.. I have a feeling it is to do with email but dont know what it is or how to get rid of it... i have no new messages waiting to be read ...
    your help would be much appreicated.
    Regards
    Sutton237
    Solved!
    Go to Solution.

    Check your WAP or Browser push messages.
    Messages folder > Options > View Folders, then look in both your WAP push and Browser push folders.
    Read and clear the message.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • New HP color laserjet pro mfp supply low

    I just setup a new HP color laserjet pro mfp and it says the cartridge supply is low and won't print. 

    Hi @PamJones1 ,
    I see that you are getting a "Low Supply", error message. I would like to help you out.
    Make sure all the packing material is removed from the toner and inside the printer.
    What is the full name and product number of your printer? How Do I Find My Model Number or Product Number?
    How is the printer connected? (USB/Ethernet/Wireless)
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    Have a great day!
    Thank You.
    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!
    Gemini02
    I work on behalf of HP

  • I've made a new icon for a folder, using icon composer. But when I add it to the folder in the icon spot, it changes instead to the generic picture icon with "icns" on it. How do I make sure the picture actually changes to what I want?

    So I took a picture of a generic mac osx snow leopard folder (png), layered a picture of a movie reel onto it (png) using the application Gimp, then saved this complete picture as a png. I then took this picture and dragged it into Icon Composer & from there saved the new icon as an icns file. Next, I selected this new icns file, copied it, went into the "Get Info" part for the folder I want, clicked on the little icon in the top left corner, and selected Paste in the Edit menu. The icon did change, but it changed to the generic Preview icon with the letters "icns" across the bottom. Why isn't it changing to the actual picture I made? And how can I fix this or make sure I do get the result I want?
    FYI: I have done this EXACT SAME process with other icons I've created, and in the past it has worked fine and changed the icon to the picture that I made. But today it's done this twice, with two different pictures/icons and in different folders.

    Did you open the image in Preview? Then make sure you are actually selecting and copying the open image? You can check by going to Finder->Edit->Show Clipboard to see if the image is actually on the Clipboard. Now do GetInfo on the folder you want to have the image, select the wee little icon at the top (make sure it really is selected, the faint blue halo is hard to see) and then Paste. You MUST have permissions to write to the folder! Otherwise nothing will happen. Does the "Sharing and Permissions" section of the GetInfo window, down at the bottom, show your shortname as owner, with Read & Write permission?
    Francine

  • How to create new icon in SAP?

    I want to display an icon on a push button. It is not a standard icon present. How can i add the new icon in SAP?

    Hi Pallavi,
    u can create icon by two diffferent ways,
    1. By setting PF status in Application ToolBar
    set pf-status 'Test' . Double Click on the 'Test' and select proper options for ur customised scenario
    2. The another way is using FunctionModule like below
    - 'ICON_CREATE'
    -'ICON-SHOW'
    SO INCLUDE THIS FUNCTION MODULE IN YOUR PROGRAM  AND USE THEM
    Note: Reward if useful

  • The mail app on my Mac laptop will not open.  This began happening after an upgrade during which "Security UPdate 2012-004" was installed.  My mail app has a new icon, and I think i trashed the old program (trying to follow directions).  Suggest a fix?

    The mail app on my Mac laptop will not open.  This began happening after an upgrade during which "Security UPdate 2012-004" was installed.  My mail app has a new icon, and I think i trashed the old program (trying to follow directions).  Suggest a fix?

    See possible fixes here.
    https://discussions.apple.com/message/19760703#19760703
    https://discussions.apple.com/thread/4311280?tstart=0

Maybe you are looking for