Unable to find a fix for the skipping song problem

I have posted on this board a number of times now trying to find a solution to the skipping purchased music problem.
I have tried all the links. Restoring, reloading the itunes library. I have been to the apple store, and spoken with the tech guys, and they have reformatted my ipod, and even uninstalled and reinstalled itunes. Nothing seems to fix the problem.
This is not an uncommon problem, as you can see with my numerous posts on several different topics many users are or have experienced this problem. Why has apple not come up with a permanent solution? All of their so called "fixes" are nothing more than a short term remedy.
I have remained calm when speaking to customer support on the phone and when interacting with the "professionals" at the apple store. I can tell you that I am totally lost and completely bewildered with the complete lack of support regarding this problem.
Can anyone suggest how I should proceed? Of course the mini is out of warranty...which leads me to believe that when you are out of warranty apple could care less about you!
WHAT DO I DO NOW?!?!

I do not whether it works for the skipping purchased music problem, but it does for non-purchased music in my case.
You must reformat your iPod (please note format does not equal Restore).
For Window computer
Go to folder “My Computer”
Hope you can see your iPod there and right click on the iPod
Choose “Format”. Ensure the settings are at “Default” and that “Quick Format” is not checked
Now select “Format”
Eject your iPod and do a Reset
Open the iTunes 7 and click “Restore”
In case you do not manage to do a “Format” on a window computer, try to use some 3rd party disk utility software, e.g.“HP USB Disk Storage Format Tool”.
http://discussions.apple.com/thread.jspa?threadID=501330&tstart=0

Similar Messages

  • Type-mapping not working correctly, get "Unable to find a javaType for the xmlType" WARNING

    I'm manually creating a web-services.xml file, and using the autogen ant task to
    generate the codec XML/Java classes. The XML definition is provided by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG. The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service method
    that has a complex data type (non-built in data type) is not being deployed into
    the WebLogic server. But the other service method that simply takes a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    [web-services.xml]

    Hi JD,
    I spent a few cycles looking over your web-services.xml file, however I
    don't have any suggestions other that one that looks like you have
    already tried, at the top, in the <schema...>
    targetNamespace="urn:sap-com:document:sap:business"
    Making edits to these generated files can be tricky and my only
    suggestion is to create a small reproducer to run by our outstanding
    support team.
    A quick look at our problem database shows one issue (CR095109) related
    to a similar problem at deploy time that was fixed with 7.0SP3. Again,
    the support folks will be able to help focus in on the issue.
    Regards,
    Bruce
    JD wrote:
    >
    The first posting contains the wrong web-services.xml file. Please refer to this
    one instead.
    "JD" <[email protected]> wrote:
    I'm manually creating a web-services.xml file, and using the autogen
    ant task to
    generate the codec XML/Java classes. The XML definition is provided
    by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG.
    The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have
    registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is
    simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the
    SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service
    method
    that has a complex data type (non-built in data type) is not being deployed
    into
    the WebLogic server. But the other service method that simply takes
    a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition
    and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class
    files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate
    the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into
    the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to
    the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document
    throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    Name: web-services.xml
    web-services.xml Type: ACT Project (text/xml)
    Encoding: base64

  • Apple mail problem message reads - Account removal failed with error: "The operation couldn't be completed. Unable to find an account for the UID given.".

    Account removal failed with error: “The operation couldn’t be completed. Unable to find an account for the UID given.”.   - trying to remove account but get this message please help

    Try to remove the account in the Internet Accounts preference pane.

  • Unable to find domain controller for the specified domain. Please explicitly specify the domain controller.

    Im getting error "Unable to find domain controller for the specified domain. Please explicitly specify the domain controller."   when I try to create an AD connection for my User Profile Service.  The entire sharepoint environment is installed
    on one server.  That server has everyting on it, AD, SQL, Sharepoint, and its the domain controller. I cant figure out why this will not identify?Trevor Fielder

    Hi,
    Did you get this error when clicking on the Populate Containers button?
    If yes, please make sure that you have provide the domain credentials in the account name and password
    boxes below when entering the domain information. The account must be granted the replicating directory changes permission on the domain.
    You can refer to this blog:
    http://www.harbar.net/articles/sp2010ups.aspx
    Xue-Mei Chang

  • [svn] 1313: Fix for the use namespace problems we've been having with ASC ( I hope).

    Revision: 1313
    Author: [email protected]
    Date: 2008-04-20 09:41:41 -0700 (Sun, 20 Apr 2008)
    Log Message:
    Fix for the use namespace problems we've been having with ASC (I hope). The problem was that the use directive was being defined after we had called finish package. The UseDirectiveNode has a pkgdef ptr, and does different things depending if that ptr is null or not. It should not be null when the UseDirective is inside the package - but since we were generating the UseDirectiveNode after we had called finishPackage the UseDirectiveNode didn't have it's pkgdef ptr set, and so things went awry as the package didn't get set up with all the correct open namespaces. I haven't tested this in authoring/flex but I am pretty sure that this will fix all the problems we're seeing.
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/Parser.java

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Fix for the skipping yet????   SUPPORT = READ THIS

    Is there a fix yet for the skipping/clipping in playback that was introduced with 7.6.whatever??? Has Apple even acknowledged that there is a problem???
    My iTunes library is useless like this.

    Hi,
    There are various reasons why iCal won't read that file.
    1. Spaces at the end of lines (eg after the last "END:VEVENT"). I'm not sure if this is incorrect, but iCal does not like it.
    2. The format of some of the dates/times is incorrect. (see http://www.apps.ietf.org/rfc/rfc2445.html#sec-4.3.12 and http://www.apps.ietf.org/rfc/rfc2445.html#sec-4.3.4 if you're interested).
    3. The UIDs for the two events are not unique. Perhaps this is something you edited? (see http://www.apps.ietf.org/rfc/rfc2445.html#sec-4.8.4.7 )
    This works in my iCal:
    BEGIN:VCALENDAR
    PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
    VERSION:2.0
    METHOD:PUBLISH
    BEGIN:VEVENT
    DTSTAMP:20100512T133215Z
    DTSTART:20100601T141000Z
    DTEND:20100601T221300Z
    DESCRIPTION;ENCODING=QUOTED-PRINTABLE:Omitted
    LOCATION;ENCODING=QUOTED-PRINTABLE:Reagan National
    SUMMARY;ENCODING=QUOTED-PRINTABLE:Your Itinerary: SFO-DCA
    PRIORITY:1
    UID:TKTNO-DELTA-11111111
    SEQUENCE:0
    BEGIN:VALARM
    TRIGGER:-PT1440M
    ACTION:DISPLAY
    DESCRIPTION:Reminder
    END:VALARM
    STATUS:CONFIRMED
    END:VEVENT
    BEGIN:VEVENT
    DTSTAMP:20100512T133215Z
    DTSTART:20100605T110000Z
    DTEND:20100605T195000Z
    DESCRIPTION;ENCODING=QUOTED-PRINTABLE:OMITTED
    LOCATION;ENCODING=QUOTED-PRINTABLE:San Francisco Intl
    SUMMARY;ENCODING=QUOTED-PRINTABLE:Your Itinerary: DCA-SFO
    PRIORITY:1
    UID:TKTNO-DELTA-11111112
    SEQUENCE:1
    BEGIN:VALARM
    TRIGGER:-PT1440M
    ACTION:DISPLAY
    DESCRIPTION:Reminder
    END:VALARM
    STATUS:CONFIRMED
    END:VEVENT
    END:VCALENDAR
    Best wishes
    John M

  • Any fix for the "remembering passwords" problem with MAIL?

    I've been following the other threads on this topic. I am a new Mac user (all of 5 days) with 10.5.2 preinstalled on a macbook pro, so this is not a migration problem. Applecare has been unable to resolve the issue. My setup is a Verizon FIOS POP account. I've tried all the repairing, creating keychain suggestions. My incoming and outgoing accounts function properly, then they mysteriously forget the login credentials. Is there any fix for this, this seems absurd coming from a PC background? Thanks.

    I just signed up for FIOS and am not experiencing your problem (had enough other ones instead).
    Go to mail preferences ~ click on a mail account ~ click on the advanced tab. The only settings that worked for me were: port 110 SSL OFF, authentication: Authenticated POP (APOP). If I remember correctly when I first set this up another window opened and I typed in my password and never had to do that again.
    Hope this helps.

  • Is HP/Palm working on a fix for the PDF viewing problems

    For several months, I've been having issues viewing PDFs on my Pre, and though I find lots of information confirming same, I can't find any evidence that HP/Palm is doing anything about it.  Getting tired of sending myself links so I can view PDFs on a computer....what about it HP/Palm?
    While I'm not happy I fell for all the hype about Flash support, I'm probably more upset I can't even view many PDFs using this device.
    Post relates to: Pre p100eww (Sprint)

    hi, there are a couple of treads on the problem from Spring 2010:
    http://forums.palm.com/t5/webOS-Software/PDF-viewer-bug-v1-4-5/m-p/308929
    http://forums.palm.com/t5/webOS-Software/Post-1-4-5-Pre-Freezing/m-p/319306#M20781
    http://forums.palm.com/t5/webOS-Software/Pre-PDF-problems/td-p/302069
    zoom in and let the device wait for the Pre to autopower off. The bug happens with PDF and all office apps.

  • Havn't been here in a while. Anyone find a fix for the sync issue?

    I found you can do one album at a time. thats fine, time consuming but fine...
    BUT I CANT SYNC VIDEOS!!!! and its quite annoying
    Just wondering if there was a fix yet

    Go to devices and click on your iPod Touch. Go to tv shows and movies and see if it says sync movies or snyc tv shows (couple of options). For music videos go to the bottom of music and see if its checked include music videos. Remember its under devices

  • Socket Closed error please help us finding a fix for the same

    Hi everyone,
    I have a web application deployed on Weblogic 10.3.4.0. In the application there is hyperlink to download a resouce (say an PDF document). Upon clicking the link, IE shows the Open/Save/Cancel dialog box. If the Open/Save/Cancel dialog box is not acted upon by the user within 1 min after it pops up, Weblogic is closing the socket. This causes IE to only download a part of the file say 784 KB or something. Whereas the entire file maybe 1MB in size. Please help in fixing this issue ASAP.
    Thanks in Advance
    java.net.SocketException: Socket closed
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:99)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at weblogic.servlet.internal.ChunkOutput.writeChunkTransfer(ChunkOutput.java:525)
    at weblogic.servlet.internal.ChunkOutput.writeChunks(ChunkOutput.java:504)
    at weblogic.servlet.internal.ChunkOutput.flush(ChunkOutput.java:382)
    at weblogic.servlet.internal.CharsetChunkOutput.flush(CharsetChunkOutput.java:249)
    at weblogic.servlet.internal.ChunkOutput.checkForFlush(ChunkOutput.java:469)
    at weblogic.servlet.internal.CharsetChunkOutput.implWrite(CharsetChunkOutput.java:396)
    at weblogic.servlet.internal.CharsetChunkOutput.write(CharsetChunkOutput.java:198)
    at weblogic.servlet.internal.ChunkOutputWrapper.write(ChunkOutputWrapper.java:139)
    at weblogic.servlet.internal.ServletOutputStreamImpl.write(ServletOutputStreamImpl.java:169)
    at com.teja.systemi.util.AroundData.copyStream(AroundData.java:311)
    at com.teja.systemi.client.servlet.servant.Newdownloadsingle.producePageData(Newdownloadsingle.java:108)
    at com.teja.systemi.client.servlet.servant.BaseViewController.serve(BaseViewController.java:542)
    at com.teja.systemi.client.servlet.FrontController.doRequest(FrontController.java:226)
    at com.teja.systemi.client.servlet.FrontController.doPost(FrontController.java:128)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Edited by: 910597 on Jan 27, 2012 2:15 AM

    What do you mean by "moo" ?
    Huh? You don't know about the moo? Are you livin' in a barn or sumthin'
    Sorry, corny joke.
    Seriously--if you haven't heard about the moo, then check out the MacBook forums. Nearly every third or fourth post is about the mooing problem.
    My own MacBook moos, but it's not so bad that it makes me upset. I understand, though, that others have it much worse.
    Black Macbook; Mini 1.5GHz (Late 2005); Mini 1.4GHz; PB G4 1GHz; PB Lombard; PB 2400; PMac G3; Blueberry iMac; iPod nano 4GB; and a talking Bill King bobblehead doll--Holy Toledo!

  • My iTunes fix for the not launching problem

    I uninstalled iTunes (don't worry all your songs will still be there...mine were), rebooted, De-Activated all the Norton. Re-installed the iTunes, made sure the program would open. Re-Activated the Norton, went into Person Firewall - Programs Tab - deleted the iTunes program that was in there. Then I did program scan and re-inserted the iTunes into the permissions and set as always allow to access internet. It's still a little finicky but it works. I had no problems updating my Pod.

    Sorry...this solution may have fixed your problem...but it doesn't fix mine. Even Creative
    admits that it has no idea how to solve my issue of not connecting. My Zen Nano has NEVER been "connected" to the PC and has NEVER established a functional generic dri've.

  • Looks Like A Fix For The Stopping Video Problem

    I have tried this and it seems to work on my 60gb unit. I couldn't get anything to play past 30 seconds but this worked three out of three times. Give it a try and let me know how it works out.
    http://arstechnica.com/guides/tweaks/ipod-video.ars/5
      Windows XP Pro  

    I have tried this and it seems to work on my 60gb unit. I couldn't get anything to play past 30 seconds but this worked three out of three times. Give it a try and let me know how it works out.
    http://arstechnica.com/guides/tweaks/ipod-video.ars/5
      Windows XP Pro  

  • Is there a fix for the connectivity problems with iPhone 5S and ISO 7.0.2?

    Is there a fix for the bluetooth connectivity problems with iPhone 5S and ISO 7.0.4?
    I am having problems connecting the BT Audio and the handsfree phone connectyion is unreliable in 2012 Mitsubishi Lancer XL.
    All worked OK with ISO 6.

    Hello CraigNicholson
    You would need to sync with iTunes to get that process to work for you. Check out the article below for more information on how to resolve that issue to get the proper token to use Push Notifications again.
    iPad and iPod touch: Unable to use YouTube or Push notifications
    http://support.apple.com/kb/ts3305
    Regards,
    -Norm G.

  • A fix for the crash problem.

    Firefox has been extremely annoying on an XP machine with it's constant crash reports requiring uninstall and reinstall several times till it starts working again. However, periodically repairing Firefox was worth the headache for the benefit of Firefox’s performance. Mozilla Firefox 4.0 Beta 8 was installed hoping it contained the fix for the crash report problem; it didn't. BUT, the new crash report post-mortum file list provides another means to identify a probable cause. The file list was discovered after about the third crash and it was noted that Firefox was attempting to load an internet filter dll file from C:\WINDOWS\SYSTEM instead of C:\WINDOWS\SYSTEM32 which had the correct version. Evidently, the internet filter program update placed the newer version dll in C:\WINDOWS\SYSTEM32 and did nothing with the older version dll in C:\WINDOWS\SYSTEM or the registry mapping. A copy of the newer version dll was placed in C:\WINDOWS\SYSTEM and it has been smooth sailing with Firefox ever since. Thanks for adding the post –mortum file list; it provided a means to identify and fix the problem. Firefox is working great and the snail’s pace Internet Explorer 8 has been retired. Thanks again!

    ''Problem:'' For whatever reason, NoScript is stopping Runescape Community Toolbar from working properly which freezes your first Firefox window.
    ''Fix:'' Uninstall the toolbar. Disable NoScript. Install the toolbar. Add your RS account to it and make sure it works, then Enable NoScript again.
    EDIT: Posted a fix earlier that was wrong. Corrected to the right one, sorry ^_^ Answer was on Runescape Forums.

  • Joe Schorr - When can we expect a fix to the numerous keyword problems?

    Joe, when can we expect a fix for the numerous keyword problems? Is this a priority?
    There are so many problems that I’ll be very surprised if you can resolve them all on the first attempt. I doubt you have a complete list but I feel safe in saying they’ve all been mentioned here in one form or another. You would be doing yourself and the customers a service if you took the unprecedented step of providing your list so that it can be reviewed for accuracy. I’m finding new problems... or at least I think I am. I hate to waste your time reporting problems others have already reported or worse yet, problems I’ve reported — as I’ve lost track there are so many.
    Please let us know what is going on with this. You’ve made progress on the performance issues (though I think I speak for everyone with a PPC system that it’s still not what it should be – and I have a G5 Quad w/7 GB RAM and Quadro FX 4500 card. Aperture should be smokin’ but it’s not...)
    I look forward to hearing from you....

    I have a 500 GB hard drive; that's how I've avoided the issue, to date. But you consider a 2000 shot bat mitzvah a small shoot, so I have know problem acknowledging you shoot a lot more than I do.
    The key point about Aperture, to date, is that it doesn't add ANY data to original RAW files, period. Everything it appears to do -- everything is just a set of modifications to the master. This applies to sharpening, this applies to shadows and highlights, this applies to cropping... and it applies to metadata.
    As for archival, etc., ... if you're archiving outside of Aperture... why not just use multiple Aperture libraries? It's a bit inconvenient (to the extent that it takes 15 seconds to change the setting and re-launch), but it gets around the problem. I mean, if you're archiving external to Aperture in original RAW format, you're not only "losing" the metadata... you're losing every single change you've made to the file. Truly, no editing functionality of anything would you be using in this scenario.

Maybe you are looking for

  • Has anyone had this happen - Boots only as a PC

    Right now I have a 200 GB windows 7 PC running on an Imac body. The drive should be 1 TB but I gave the bulk to my mac side because I need it for photoshop and my main applications. The system fails to recognize the mac partition completely when boot

  • Can't get rid of JDialog buttons!

    Hey all, I just figured out how to use JDialogs and I'm having trouble with adding buttons on them. Specifically, once I kill the dialog, I want everything on it to go away so I can remake it again when I need to. However what happens is, when I re-a

  • Moving to Lightroom 4 from elements 7

    I have an PC that runs Windows XP on which I have all my photos organised within Photoshop Elements 7.  These are backed up onto an external hard drive using the Elements backup facility.  I have just bought a new PC running Windows 8.  I want to ins

  • Ipod movie

    hi, i bought a 30 gb ipod. now i want to send dvd movie from my dvd to ipod...i tried drag and drop in i tunes but it does not work., please hlp

  • Lightroom and processing platform question

    I have posted a version of this question on PS, but it is LR where it really matters. Some eons ago, I was a PS user and found my then-current machine had features which PS was not using. Cannot remember the fine detail, we are talking PS5 or 6... So