Whose bug: IE or Fissues?

Scenario:
I got into one of my frequent "Submit that won't Submit" states and out of force of habit from having the same thing happen on Answers where we can not then reuse the Submit button I cloned the thread into its own tab, cloned my Submit and finished
my post.  No trouble doing that.  I know that I could have tried to re-use the Submit button on TechNet.  I just forgot to use it.
So, I continued working on my forum, leaving that "stuck" Submit still open.  Eventually I got to another thread that I wanted to reply to and got the warning that I already had a Reply open.  I tried to close it by contracting the preview
and went back to the new preview post that I wanted to reply to.  Same message.  Went back to the place where my previously "hung" Submit was (BTW how are we supposed to find this if we forget what the Subject was?) and expanded it. 
OMG. There was my new post (courtesy of the cloned thread) and more importantly no more sign of an open Reply frame, so I again tried to start my new Reply in the other preview thread.  Still got the warning?  WTH?
ICIM this is on W8.1.2, so IE11.
Robert Aldwinckle

Something is barfing in the checks for manifest classpaths.
Would be interesting to see the "web-app" that is causing this to happen. Can you
jar up a simple webapp test case and attach it?
mbg
"zb cong" <[email protected]> wrote:
>
hello
i integrate the jbuilder6 with weblogic6,write a simple servlet,right click
it,select
"web run",it throw a "stringindexoutofboundsexception",as follow:
<2002-7-2 &#19979;&#21320;02&#26102;17&#20998;46&#31186;> <Error> <Management>
<ApplicationManager
starting Config caught throwable
java.lang.reflect.UndeclaredThrowableException: java.lang.StringIndexOutOfBoundsException:
String index out of range: -1
     at java.lang.String.substring(String.java:1525)
     at weblogic.servlet.internal.WebAppHelper.resolveManifestName(WebAppHelper.java:469)
     at weblogic.servlet.internal.WebAppHelper.extractClassFiles(WebAppHelper.java:234)
     at weblogic.servlet.internal.WebAppServletContext.extractClassFiles...
why?who can help me?
thank you!

Similar Messages

  • Constant site errors

    Once again we are getting constant "web page error" when save a reply. Also no emails are being sent since yesterday.
    When clicking "Alert Me" the page jumps to my user profile then throws page error.
    This happens on one Win 8.1 and one Windows 7 system.
    ¯\_(ツ)_/¯

     "web page error" when save a reply.
    What is the scenario?  E.g. this sounds like it could be clicking on Submit twice?  I keep forgetting that that is possible because of how Answers has been working (had been working, since it too apparently now allows us to retry a Submit when
    it comes back after having done nothing.)
    C.f.
    https://social.technet.microsoft.com/Forums/en-US/e00db0a4-cf3b-4759-b99f-7a87d89d73d9/whose-bug-ie-or-fissues?forum=reportabug
    http://answers.microsoft.com/en-us/feedback/forum/fdbk_commsite-bug/performance-problems-report-errors-here/e93eeb69-6502-44b6-aa63-424d8239d4e0?page=25&msgId=5996c5b8-12e7-48d3-9984-4c8e402f7b50 
    Note that for another issue in that same "Performance" thread we had been asked to clear our caches, apparently in the belief that something had been fixed.  I give proof that if that was in fact true it was not the client caches which need
    to be cleared but some intermediate ones in the network.  I don't know how we are supposed to help try to diagnose a case like that.  On Answers they are asking for Fiddler traces but I think that could actually fix some problems if they are related
    to timeouts that we have no control over otherwise (because Fiddler is a proxy program).
    So, try using Fiddler?  If nothing else you may then have diagnostics to help give a clearer symptom description.   <eg>
    Robert Aldwinckle

  • Bug in either ANSI Join or Oracle 10.2

    I can't tell whose bug this is, but it's almost certainly a bug.
    My co-worker Martin wrote a query (below) that returned zero rows, which he knew was wrong.
    In exploring this further, he discovered that rewriting the join from ANSI 92 to the old WHERE clause join suddenly caused a "ORA-00918: column ambiguously defined" error to arise.
    Then, when he added a table qualifier to one of the column names (effective_dt became fam.effective_dt), suddenly he began to get his data.
    So, here's my question. Why does a query that uses ANSI-92 Join syntax not raise the "ORA-00918: column ambiguously defined" error, WHEN THERE WAS AN AMBIGUOUSLY DEFINED COLUMN? Does the ANSI-92 join syntax imply some sort of hierarchy of table precedence that resolves the ambiguity by implication?
    Here's the query, FYI:
    SELECT fam.asset_mix_percent_nbr
    FROM rp_mip_rpd_fund_asset_mix fam
    JOIN rp_mip_rpd_fund mrf ON fam.rp_mip_rpd_fund_seq =
    mrf.rp_mip_rpd_fund_seq
    JOIN rp_rpd_fund rpd ON mrf.rp_rpd_fund_seq = rpd.rp_rpd_fund_seq
    JOIN rp_psrpd_fund psrpd ON rpd.rp_rpd_fund_seq = psrpd.rp_rpd_fund_seq
    JOIN rp_cpsrpd_fund cpsrpd ON psrpd.rp_psrpd_fund_seq =
    cpsrpd.rp_psrpd_fund_seq
    WHERE rpd.fast_fund_id = LPAD('96', 3, '0')
    AND cpsrpd.cntrct_nbr_id = '800710'
    AND fam.effective_dt =
    -- AND effective_dt = -- this version returns no rows
    (SELECT MAX(fam1.effective_dt)
    FROM rp_mip_rpd_fund_asset_mix fam1
    WHERE fam1.effective_dt <= '03-Oct-07'
    AND fam1.rp_mip_rpd_fund_seq = mrf.rp_mip_rpd_fund_seq);

    We're at 10.2.0.2.0 on a Sun box:
    SunOS saturn1 5.9 Generic_122300-13 sun4u sparc SUNW,Sun-Fire-15000
    The explain plans are identical. Here's one:
    SQL Statement from editor:
    SELECT fam.asset_mix_percent_nbr
    FROM rp_mip_rpd_fund_asset_mix fam
    JOIN rp_mip_rpd_fund mrf ON fam.rp_mip_rpd_fund_seq =
    mrf.rp_mip_rpd_fund_seq
    JOIN rp_rpd_fund rpd ON mrf.rp_rpd_fund_seq = rpd.rp_rpd_fund_seq
    JOIN rp_psrpd_fund psrpd ON rpd.rp_rpd_fund_seq = psrpd.rp_rpd_fund_seq
    JOIN rp_cpsrpd_fund cpsrpd ON psrpd.rp_psrpd_fund_seq =
    cpsrpd.rp_psrpd_fund_seq
    WHERE rpd.fast_fund_id = LPAD('96', 3, '0')
    AND cpsrpd.cntrct_nbr_id = '800710'
    AND effective_dt = -- this version returns no rows
    (SELECT MAX(fam1.effective_dt)
    FROM rp_mip_rpd_fund_asset_mix fam1
    WHERE fam1.effective_dt <= '03-Oct-07'
    AND fam1.rp_mip_rpd_fund_seq = mrf.rp_mip_rpd_fund_seq);
      Statement Id=CB0A0233   Type=SELECT STATEMENT
        Cost=44  TimeStamp=10-DEC-07::06:46:32
           (1)  SELECT STATEMENT  CHOOSE no rows returned
         Est. Rows: 1  Cost: 20
        FILTER
               (13)  TABLE TABLE ACCESS BY INDEX ROWID RP.RP_MIP_RPD_FUND_ASSET_MIX  [Analyzed]
               (13)   Blocks: 5 Est. Rows: 1 of 275  Cost: 1
                    Tablespace: RP
                   (12)  NESTED LOOPS
                        Est. Rows: 1  Cost: 18
                       (10)  NESTED LOOPS
                            Est. Rows: 1  Cost: 17
                           (7)  HASH JOIN
                                Est. Rows: 1  Cost: 16
                               (5)  HASH JOIN
                                    Est. Rows: 20  Cost: 12
                                   (3)  TABLE TABLE ACCESS BY INDEX ROWID RP.RP_CPSRPD_FUND  [Analyzed]
                                   (3)   Blocks: 1,152 Est. Rows: 20 of 75,726  Cost: 6
                                        Tablespace: RP
                                       (2)  INDEX INDEX RANGE SCAN RP.RP_CPSRPD_FUND_F5  [Analyzed]
                                            Est. Rows: 20  Cost: 1
                                   (4)  TABLE TABLE ACCESS FULL RP.RP_PSRPD_FUND  [Analyzed]
                                   (4)   Blocks: 34 Est. Rows: 3,145 of 3,145  Cost: 5
                                        Tablespace: RP
                               (6)  TABLE TABLE ACCESS FULL RP.RP_RPD_FUND  [Analyzed]
                               (6)   Blocks: 13 Est. Rows: 3 of 276  Cost: 3
                                    Tablespace: RP
                           (9)  TABLE TABLE ACCESS BY INDEX ROWID RP.RP_MIP_RPD_FUND  [Analyzed]
                           (9)   Blocks: 5 Est. Rows: 1 of 275  Cost: 1
                                Tablespace: RP
                               (8)  INDEX INDEX RANGE SCAN RP.RP_MIP_RPD_FUND_FK2  [Analyzed]
                                    Est. Rows: 1
                       (11)  INDEX INDEX RANGE SCAN RP.RP_MIP_RPD_FUND_ASSET_MIX_FK1  [Analyzed]
                            Est. Rows: 1
               (16)  SORT AGGREGATE
                    Est. Rows: 1
                   (15)  TABLE TABLE ACCESS BY INDEX ROWID RP.RP_MIP_RPD_FUND_ASSET_MIX  [Analyzed]
                   (15)   Blocks: 5 Est. Rows: 1 of 275  Cost: 2
                        Tablespace: RP
                       (14)  INDEX INDEX RANGE SCAN RP.RP_MIP_RPD_FUND_ASSET_MIX_FK1  [Analyzed]
                            Est. Rows: 1  Cost: 1

  • I am unable to manually add music to my iphone.

    I have an iphone 3gs. Laptop running windows XP.
    I have, for years, manually managed my music etc. I have the "manually manage music" box checked.
    But when I drag music onto my phone in the sidebar, instead of getting the "+", at which point the device shows the spinning "synch" circle, I get a grey crossed out circle - the international symbol for "NO".
    My phone has space on it.
    Also, if I delete a song off my phone in itunes, it doesn't actually delete it off the device - there is no "synch" process. If i delete the song off the phone through the music ap, my computer/itunes thinks it's still there.
    All i want to do is add an album, but this *** doesn't even do that. What is it, is my phone no longer supported by itunes because it's old?
    Have i simply gone too long without buying a new phone and now it's "locked" (im being facetious, i know, but this is infuriating).
    Please note, i do NOT want to "restore" or delete my phone. That is not a viable option for this sort of thing. You wouldn't get that in a hospital: "I've broken my finger."
    "Ok, let's cut your arm off, and attach a new one"
    I also do not want to automatically synch music - doing so will erase my music, and my computer library is bigger than the phone. I only want specific songs that i chose.

    The new iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the centre of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    If you still cannot add artwork via any of these methods then I would suspect a permissions problem. See Repair security permissions for iTunes for Windows.
    tt2

  • Why can't i directly cut and paste album art

    The older I-Tunes was able to cut directly and paste album art pictures, (when the find album album art auto feature failed) I now have to save album images to my hard drive,' Apart from the new coloured (I spell Colored with a "U" as I'm British)  icon Red instead of blue the rest of it is just the same 

    The new iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the center of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    The new icon is the least of the changes.
    tt2

  • How do you change the artwork in the new itunes? it won't let me delete it

    how do you change the album artwork in the new iTunes? it won't let me delete the old artwork even when I highlight it

    The new iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the centre of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    tt2

  • Itunes 12 album art no longer able to paste it in

    Apple please return to copy and paste album art in iTunes.  This searching for a file to import in is really annoying.

    Works fine here.
    The new iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the centre of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local file copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    tt2

  • How to post podcast artwork in iTunes with libsyn

    Quick question..
    How do I get MY image to show up in the podcast page in iTunes? I'm talking about the page that shows when my podcast is displayed. There is just a default image there right now, and I would like to change it to an image of my choosing. I've gone into the setting tab in libsyn, and added an image to the iTunes submission tab, but the image fails to show. I'm assuming this is a problem with the rss feed, because no image shows in a few other podcast directories.
    How do I make an image show up in the iTunes podcast artwork area? How do I do this using libsyn as my host?
    Thanks

    The iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the center of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    tt2

  • Artwork in itunes 12?

    Why can't you control the view of artwork in itunes 12?

    The iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the center of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    tt2

  • I am unable to manually add artwork via itunes 12 on windows 7. I've tried all the suggestions to no avail. Has anyone succeeeded on the same platform as me?

    i am unable to manually add artwork via itunes 12 on windows 7. I've tried all the suggestions to no avail. Has anyone succeeded on the same platform as me?

    The new iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the centre of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    If you still cannot add artwork via any of these methods then I would suspect a permissions problem. See Repair security permissions for iTunes for Windows.
    tt2

  • Deleting Artwork in Itunes

    For some reason several (Many) of my albums have picked up the same album art from a completely different album - the wrong one and I can not delete that artwork to search for the correct art. When I go into "Get Info" no artwork appears. How in the world do I get rid of the ghost artwork?

    The iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the center of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    tt2

  • Sharing a Windows Printer

    I am trying to setup a Canon PIXMA 5200 printer. The printer is attached by USB to a Windows PC. I can access the network and see the printer, but the printer model does not appear on the drop down menu. If I install the printer to the Mac by USB cable, then the correct driver is used and the printer functions normally.
    How can I use this printer when it's installed on the Windows based PC?
    Thanks in advance.

    Glad to be of some help. This bug does smack of Windows XP. Maybe I'm biased.
    Mark, thanks for your info. I have been printing
    just fine for many version of MAC OS X with my
    printer shared name of "Epson Photo 900". I do not
    print very often from my MAC but when I want to, it
    is great to have.
    Anyway, yesterday i went to print, and my XP printer
    did not show up. After searching the forum, i came
    accross your post, and changed the name to one word
    title Epson_900, and like magic it showed up. Wonder
    whose bug this one is, MACs or XPs?
    Anyway thanks again,
    Bob

  • How do i get cover art in Itunes 12.0.01?

    Okey.. so last week, I tried to import some cover art for my band's music and it worked just fine, but i had to delete the music, 'cause it wasn't the master version. So my problem is that when i imported the mastered tracks (Jan 4), they played just fine and everything, and i just wanted to get some updated cover art on the music, but when i drag the image the the mini picture and press "ok", nothing happens!! anybody experienced this yet?q
    Anyhow.. i use a 15" Macbook pro, from 2009. I upgraded to Yosemite, a month ago, and this is the first time I've experienced difficulties with it.

    The new iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the centre of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    tt2

  • How to manually remove artwork in iTunes 12.0.1?

    Hi,
    I want to remove the artwork from an album. In the previous versions of iTunes, one could simply go to the info page and click the artwork check box and the artwork would be removed. In iTunes 12.0.1 there is not this option. Even if you try to right click on the songs and select "Clear Artwork" it doesn't do anything.
    Does anyone know how to manually remove artwork in this version of iTunes?
    Thanks so much,

    The iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the center of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    tt2

  • Keynote destroys version control files inside of .key directory

    Hi - I've been using Keynote for a couple of years now and in general I really prefer it. However, I've noticed a change in the more recent versions of the iWork apps, particularly Keynote. It seems that when I save my presentation, Keynote is erasing data files (".svn" directories) which my version control system (Subversion) leaves inside of the Keynote directories, which renders me unable to check the changes to my Keynote file back into the repository (Subversion). A similar problem occurs when I save my ".pages" documents.
    Storing my files in Subversion is an important part of how I manage my business' documents, and I cannot see how erasing the ".svn" directories as part of the "save" routine adds useful function to Keynote or any of the iWork apps. This problem is not unique to subversion, as CVS does the same thing. I would suggest removing the code which erases/cleans the directories under the ".key" top-level directory.
    Thanks for your consideration!

    The "your bug/my bug" dialogue doesn't seem to be very helpful in this discussion (and the open/proprietary arguments even less so). It's a bug at the interaction of how two packages are using the file system, an "our bug" so to speak.
    I think the underlying issue has to do with the design discipline of orthogonality which is part of the Unix DNA. Different components are designed to both not step on each other and (where possible) to connect together well. One of the tricks for that orthogonality is the use of dot.files to store application information in the file hierarchy.
    OS X Packages, which are a great idea, break orthogonality when they delete information from other tools with prejudice and compound the problem by having no way to override that policy (for example, allowing the declaration of some dotted file or directory names as valid external metadata).
    Whose bug is it that subversion doesn't respect one particular vendor's way of using the file system? Given that dot.files are a broad and historically deep Unix convention, I'd be inclined to suggest that the application doing the deleting is in error. subversion could fix the problem with vendor-specific patches, but this doesn't seem the right kind of open approach.
    The argument could be made that the iWork applications are Mac applications, not Unix applications, so they shouldn't have to worry about these Unix conventions. But one of the nicest things about the Mac is that it is both Apple and Unix and it would be nice if it stayed that way as Apple added more cool pieces to the OS X universe.
    I think I've seen all the workaround and I'm using one for the time being, but I am also seriously but regrettably considering dropping iWork in my company to switch to something more Unix-resonant.

Maybe you are looking for