Aperture creating individual photo files

Just developed a new issue. For some reason, whenever I import files from my iPhone to Aperture, it not only saves my photos in the library i'm currently using, but it also seems to be creating a copy in my "pictures" folder on my hard drive. I have no idea why. I can delete those individual jpeg files, but this is really annoying and I'm not 100% sure I should delete them. But, shouldn't they only be in my library not as individual files?? Why is this happening?

Are you certain the import setting for the original files is still set to In the Aperture Library. that is as managed files?

Similar Messages

  • Where are individual photo files stored on disk after iPhoto import?

    This might be the dumbest question in iPhoto history but WHERE in the file system are the individual photo files stored after importing them into iPhoto?
    The reason I ask is I want to simply go to the file location in the finder window and attach to an email or edit with another application.
    When I go to Pictures>iPhoto Library there is one gigantic iPhoto library file.
    Thanks!

    kuristofuaa
    The photos are stored inside the iPhoto Package File. This is simply a Unix style package file, it makes it a tiny bit more difficult for users to inadvertently muck up their iPhoto. WHy do I say this? Because it is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss.
    As to getting pics for email:
    There are three ways (at least) to get files from the iPhoto Window.
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To upload to MySpace or any site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser. Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves. If you're willing to risk database corruption, you can restore the older functionality simply by right clicking on the iPhoto Library and choosing 'Show Package Contents'. Then simply make an alias to the folders you require and put that alias on the desktop or where ever you want it. Be aware though, that this is a hack and not supported by Apple.
    Regards
    TD

  • Can't see individual photo files using iPhoto '08

    I recently upgraded to iPhoto '08
    Now I can no longer see my individual photo files in the Finder window
    I need to see these files because I lost (and then recovered) all my photos
    Now I have multiple copies of each photo, including a very small size of each one which probably used to be the thumbnail but now is a "regular" photo in iPhoto due to the recovery process
    I want to sort my photo files by size and delete the small ones to get rid of the small duplicates
    I have too many photos to delete these one by one!
    Any suggestions would be most appreciated
    Thanks - Liz

    see the answer to your question in this thread -- http://discussions.apple.com/thread.jspa?threadID=1218128&tstart=0
    You may end up having to export your photos, clean them up and reimport them into iPhoto to straighten this out - or maybe Old TOad will have already figured you problem out .
    Larry Nebel

  • HT201250 How do I restore photos from Time Machine?  All of my photos have been imported within iPhoto and therefore are exported to Time Machine via an iPhoto file.  I can't figure out how to break individual photo files out of the iPhoto file.  Any idea

    How do I restore photos from Time Machine?  All of my photos have been imported within iPhoto and therefore are exported to Time Machine via an iPhoto file.  I can't figure out how to break individual photo files out of the iPhoto file.  Any ideas?

    You might post this query on the iPhoto forum and perhaps someone there can provide an answer.
    I tried this on my MBP and it seems that you have to restore the entire iPhoto Library.  What I did was put the current library in a separate folder on the desktop and then I restored the library from a prior date.  If you were to do that, you then could extract the desired photos and then delete the restored library.  Then place the current library back to the original location and import the desired photos.
    Not tidy but it seems it will work.
    Ciao.

  • How do I create individual xml files from the parsed data output of a xml file?

    I have written a program (DOM Parser) that parses data from a XMl File. I would like to create an individual file with the corresponding name for each set of data parsed from the xml document. If the parsed output is Single, Double, Triple, I would like to create an individual xml file (Single.xml, Double.xml, Triple.xml)with those corresponding names. How do I create the xml files and give each file the name of my parsed data output? Thanks in advance for your help.
    import java.io.IOException;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    public class MyDomParser {
      public static void main(String[] args) {
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
      try {
      DocumentBuilder builder = factory.newDocumentBuilder();
      Document doc = builder.parse("ENtemplate.xml");
      doc.normalize();
      NodeList rootNodes = doc.getElementsByTagName("templates");
      Node rootNode = rootNodes.item(0);
      Element rootElement = (Element) rootNode;
      NodeList templateList = rootElement.getElementsByTagName("template");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      System.out.println("Template" + ": " +templateElement.getAttribute("name")+ ".xml");
      } catch (ParserConfigurationException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (SAXException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();

    Ive posted the new code but now I'm getting a FileAlreadyExistException error. How do I handle this exception error correctly in my code?
    import java.io.IOException;
    import java.nio.file.FileAlreadyExistsException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    public class MyDomParser {
      public static void main(String[] args) {
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
      try {
      DocumentBuilder builder = factory.newDocumentBuilder();
      Document doc = builder.parse("ENtemplate.xml");
      doc.normalize();
      NodeList rootNodes = doc.getElementsByTagName("templates");
      Node rootNode = rootNodes.item(0);
      Element rootElement = (Element) rootNode;
      NodeList templateList = rootElement.getElementsByTagName("template");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      System.out.println(templateElement.getAttribute("name")+ ".xml");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      String fileName = templateElement.getAttribute("name") + ".xml";
      Files.createFile(Paths.get(fileName));
      System.out.println("File" + ":" + fileName + ".xml created");
      } catch (ParserConfigurationException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (SAXException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();

  • Access to individual photo files in Finder

    I recently updated to iLife 08. I've noticed a couple of things but the most confusing is that when I go through finder>pictures>Library.iPhoto instead of having "roll" folders like before, I now only see the iPhoto icon (the sunset pic to be exact). If I double click that icon, it takes me to iPhoto (if open already) or opens iPhoto.
    In prior versions, I was able to navigate to individual picture files in order to email or do something else with them. Now I can do it. Am I missing something or has Apple changed stuff up?
    Also, I notice that I delete files through the application but they are still on my drive.
    Lastly, I make edits through iPhoto, for instance, red-eye or crop and then in screensaver mode (or when I upload to a photo site) the unedited pic will show up. Concerned I'm clogging up my HD with multiple copies of things.
    any help would be great. Huge Apple fan but a little clueless in the architecture at times

    +I recently updated to iLife 08. I've noticed a couple of things but the most confusing is that when I go through finder>pictures>Library.iPhoto instead of having "roll" folders like before, I now only see the iPhoto icon (the sunset pic to be exact). If I double click that icon, it takes me to iPhoto (if open already) or opens iPhoto.+
    +In prior versions, I was able to navigate to individual picture files in order to email or do something else with them. Now I can do it. Am I missing something or has Apple changed stuff up?+
    this question is ask about every 10 questions -- for a complete discussion see TD's answer - http://discussions.apple.com/thread.jspa?threadID=1126400&tstart=15
    +Lastly, I make edits through iPhoto, for instance, red-eye or crop and then in screensaver mode (or when I upload to a photo site) the unedited pic will show up. Concerned I'm clogging up my HD with multiple copies of things.+
    There is (I believe) a bug with editing - you might want to rerort this to Apple -- iPhoto menu ==> Provide iPhoto Feedback - sometimes edits do not get saved. I hope Apple will address this soon. In any case one of the great things about iPhoto is that you do NOT clog up your hard drive with multiple copies - the original is always there and you can always go back to it and edits save only the edit and apply the edits (most of the time) when you view the edited photo - and one of the big changes to iPhoto 7.n.m is that edits appearently always go back to the original so multiple edits do not degrate the photo quality
    I think you will like it
    Larry Nebel

  • Aperture Creating Large JPG file and placing it with Ref File

    When I imported a group of images Aperture automatically created a JPEG file and placed it in the same folder I imported the Master images. The masters are 15.x meg and the JPEG is 3.x Meg. Any idea why this is happening - it is a new behavior

    This was news to me as well. Here's what Apple has to say about it:
    http://docs.info.apple.com/article.html?artnum=304868
    Kind of a bothersome thing to have to do before importing (their suggestion is to move the jpgs before importing). I'd shoot in RAW only except my wife wants the jpgs on her computer while I want the RAW files on mine.
    Message was edited by: Badunit

  • Creating individual pdf files?

    Hello,
    I have a MacBook with OS-X 10.5.8
    I used Excel and Word to create a mail merge Word doc which contains grade reports for 75 students. I need to turn each page into an individual pdf document which I can then email to each individual student.
    Is there a way to Save As or print to pdf and automatically create 75 new pdf files or do I need to copy, paste and save each page into a new file manually?
    Thanks for any help!
    I am new to this site so may apologies if this is the incorrect place to post this question.

    Hi Katie, might try this...
    http://mac.softpedia.com/get/Utilities/PDF-Split-and-Merge.shtml
    Or slower more arduous methods...
    http://www.documentsnap.com/how-to-split-pdf-documents-into-single-pages-using-m ac-osx/
    http://www.makeuseof.com/tag/how-to-merge-and-split-pdf-documents-on-a-mac/

  • Duplicate photo files  being created in Bridge

    I have a Mac Book pro with sno leopard and use CS5 and am having weird issues with photos from my canon 5d mk II and 7 d. Bridge is creating duplicate photo files after I download them. Sure adobe told me to purge my cache , ok, that works but it just starts re creating them again?

    You can set up a scan when you create a new device in System Preferences:
    go to System Preferences --> FCSVR Pref pane --> Devices Pane and then choose create new device ("+" sign and the Device Assistant will appear. You choose the type and then you can set up a Full or Add only Scan here.)
    Other option is to set up a Scan via the Administration window in the Java Client:
    This is not as easy since there is no Device Assistant.
    go to Admin window in Java Client --> Response and then create a new 'Scan' response on the device you want to scan. 'Scan Productions' is something different, maybe you want that instead, I don't know. Depending on how you set it up, it can create a Production in FCSVR catalogue for each folder or subfolder and that media will be scanned and placed into that Production in FCSVR catalogue.
    Anyways, once you create the Scan Response, go to Admin pane --> Schedule. Create a new schedule and add the 'Scan' response you just created to the "Response List" section. Don't forget to check "Enabled"...can't tell you how many times I created the response but then forgot to enable it.
    Once you scan the assets, they are in the FCSVR catalogue with clip proxies, thumbnails and posterframes. If you have existing FCP projects that use this media, you will want to make sure the media in the FCP project is connected to that same media that was scanned. When you upload the FCP project, it will not dup the assets, just add the FCP project to it, unless you didn't set the EIP device correctly. If you look in Search All Jobs, the only thing that should be generated at this point it Edit Proxies (if you enabled them) and Elements.
    Now my question to you is the same as Chris' question here http://discussions.apple.com/thread.jspa?messageID=9147105#9147105. How did you set things up so far? What is your workflow? Where is your media?

  • Can't find photo files.

    I have been looking for the individual photo files on my computer.  When I open the "Pictures" folder the only option that I am given is iPhoto. 
    If I click on it, it opens iPhoto but does not show the individual files.  I have used the finder to search for the individual photos by name and the search does not turn up the file.
    My ultimate question is, how do I go about finding these photo files on my computer that I know have not been removed.

    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • Time Machine and Individual photos.

    When I go back into a backup I can access my iPhoto Library folder, but when I double click on it all I get is the Preview page, not individual photo files. My iTunes library, however, works fine. I can sort through each individual song. Any ideas?

    Rick:
    With the latest version of iPhoto in iLife'08, the library is now one file. So any change to any photo in the file will cause Time Machine to backup the file again
    *That is not so.* The library is now a Unix style package which can be incrementally backed up with Time Machine or other backup applications like Synk. I use Synk to incrementally backup 10+ individual libraries as well as using TM. If one absolutely has to get into the package, although there's no reason to, access can by had by opening the package like this.
    If access to photos for use in other apps or online see TD's treatis on file access. It describes several methods.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • PSE5 not writing tags to photo files

    Having invested hours, weeks, and months in the process of tagging my many thousands of family photographs within PSE5, I am dismayed to find that having taken the manual step of writing the tags to the files, that only some of them have indeed done so. Quite a few of my photo files are showing up in Windows Explorer with the tags I have given them safely in place - great. However, twice as many appear to not be tagged at all. Can anyone explain to me what has happened and how I can rectify it, please? The prospect of having to tag them all again leaves me wanting to go and stick my head in a blender.
    A second problem is that, inexplicably, PSE5 recently started creating duplicate photo files with a "edTMP" suffix - they recreate the exact same file with the exact same file size. The only difference is that, where tags have been saved to a photo, the "edTMP" version does not include the tags. So, I just delete these files, but with the number that PSE is creating, it is a very time consuming job. Does anyone have any idea why this is happening and how I can stop it, please?
    Many, many thanks in advance to anyone who can help me rectify these really maddening issues. Thanks! And best wishes.

    First problem - It might be possible that while using 'Write keyword tag and properties info to photos' option, Organizer may have shown some errors (saying like 'Skipping invalid files'). As a result write operation may not be applied on some files. This may happen if there are some permissions issues with images. Please check that all your files are writable.
    Second option - This is an extension of first problem. Whenever Organizer fails to do any file operation (in your case 'Write keyword tag..' option), it creates a temp file. There is no way of deleting these files from withing Organizer (you need to delete them manually).
    ~Andromeda

  • Is it possible to create Panoramic photos in Aperture

    I know it is possible to create Panoramic photos in PS, but was wondering if it is also possibel in Aperture.

    Imho ( ) it is worth understanding the difference between Aperture and programs like it (LR, etc.), and Photoshop.  The difference is compositing.  PS and other Graphics programs are built from the ground up as compositors.  Aperture and its cousins are Digital Asset Managers and digital photo development tools.  You use Aperture to manage your collection of digital photos, and to make any one photo into the best version possible for whatever use you have.  Then you export your digital photos from Aperture, and use them in graphics programs to create new graphics.
    In general, if you are combining things (text, geometric primitives, multiple graphic elements, etc.), you use a graphics program; if you are optimizing a photo for a particular use, you can do it using Aperture.
    For panoramas, I import the photos I'm going to use into Aperture, Stack them and add a color label (so I can see at a glance that these Images are part of that kind of series), check the WB, the export them to a temporary Finder folder.  I use Hugin to open all the exported files and stitch them together.  Then I import the panorama I created using Hugin and place it as the Stack Pick of the Stack, and make whatever additional adjustments I want for the use I have for the panorama.
    Message was edited by: Kirby Krieger

  • Can I back up individual image files to a slideshow DVD created in Premiere Elements 4.0?

    I created a Premiere Elements 4.0 Project including 3 separate photo slideshows. The slideshows were created in Photoshop Elements 6.0 and imported into my Premiere Elements project. I was hoping that when burning the project to DVD, my image files would also be individually backed up.
    When I give the DVD to family members I would like them to have access to the image files so they can print or use them individually. I would like to do this in 1 single DVD rather than giving them a DVD with the slideshows and a DVD with the image files. I was able to do this with a previous DVD authoring program I was using, but I cannot figure it out with Premiere Elements 4.0.
    Any ideas if this is do-able with Premiere Elements 4? (I am running Windows Vista Home premium SP1 - 64bit - 3GB RAM)

    Thanks for your help. I tried this. I burned the project to a folder (4.7GB) then to that folder I added a folder with my photos. So in the folder there was "Photos", "OpenDVD" and "Video_TS". I had 3 separate folders within the "Photos" folder, to keep the 3 slideshow photos grouped.
    I burned the entire folder to a DVD using my burn tool. I don't even know the name of the software I used, but I think it was just the Toshiba burn tool. I dragged and dropped the folder into my new disc folder, then at the top of my screen clicked "burn to disc", I named the disc and chose from the formating options "Mastered: disc can be read on other computers and some CD/DVD... no new data can be added..."
    Once burned I checked it on my DVD player and now it recognizes only the individual jpg files so it does a generic slideshow of these images rather than my slideshow project. (no menu, music...) Putting the disc in my computer I could access either the files or the slideshow project, but not on my home DVD player.
    I burned the folders to 2 separate discs, once dragging the whole folder to the disc and once opening the folder and dragging only the individual folders to the disc.
    Please tell me what I'm doing wrong. thanks.

  • Photo file issues with iWeb and Aperture....also too much duplicating!!

    A little background, before I get into my iWeb issue.....
    Years ago I tried iPhoto, but I didn't like how it duplicated all my photo files and I wasn't very fond of the file structure it created. Years later (last month) I got Aperture. Aperture (still has a long way to go) also duplicates all your files and places them in their own file structure. If I can get along with Aperture (and if it will get along with my other programs), I won't mind putting all my files into the file structure it creates. But for now, I still have my original files in the original file structure I have had for many years as a back up.
    On to my issue with iWeb and Aperture....
    To add photos to iWeb, you can either go into the iWeb media center or you can drag and drop photos from other locations.
    1st: iWeb media center
    To get my photos into the media center, I would have to load them into iPhoto (iP 6 does allow you to keep your original file structure, but it still creates .jpg files, which fills up your hard-drive. More duplicates I don't need or want). So that is out for me. iP6 will let you view and use your Raw files.
    Another way is to drag and drop your file structure directly into the media center window. I don't think this duplicates any files (at least I haven't been able to find any), but it takes an awfully long time to thumbnail all your photos (several hours and still waiting for 22K + files). Also, it won't show any Raw files. Again, out for me.
    Aperture won't let you drag and drop its library into the media center at all. So if I was to move all my files into the Aperture Library, I wouldn't be able to access them for iWeb at all.....Out for me.
    2nd: Drag and Drop
    I was able to drag and drop Raw files directly into iWeb from C1 Pro, Adobe Bridge and Adobe Lightroom.
    As I said before, I am trying to move over to Aperture. However, Aperture won't let me drag and drop photos. What is the deal here??? These are both Apple programs and they won't play nice with each other. Very annoying.
    Anyway, I put a link below to my iWeb test webpage I made. All the photos were Raw files that I did a drag and drop from C1 Pro, Adobe Bridge and Lightroom. There were no problems with the publishing.
    http://web.mac.com/phil_navarro/iWeb/Site%202/Drag%20and%20Drop%20test.html
    So, does anyone know if they can get photos from Aperture to work?? Thanks for any responses.
    Phil
    G5 Desktop   Mac OS X (10.4.4)  

    Jedi,
    Perhaps you are right.
    I am not a web developer and I will never be. I don't feel like spending countless hours learning how to use Dreamweaver or some other Pro web app. iWeb looked like a way to start making websites of my photos for my friends and family (much easier and better than Home Page on .Mac). All I was asking was for a way to drag and drop my photos (especially Raw files) with Aperture. Which I can do with Lightroom, Adobe Bridge and C1 Pro, and without using iPhoto.
    I am not a Pro photographer either, but I purchased Aperture based on what was advertised on the Apple website. From that ad, Aperture fit my photo needs almost to a tee. I am looking to adjust Raw files, Crop, Archive and keep my use of Hard Disk space down to a minimum. I can use Photoshop for the other 5% of things I do. However, Aperture has some issues (if you own it, then you already know. If you don't, you can read the Aperture Forum) This is one of the reasons I never went to iPhoto for archiving. I didn't like the way it duplicated all my files, taking up more disk space and its file structure. So even though Aperture won't play nice with other programs, I was surprised that it wouldn't play nice with any Apple programs.
    After reading your post and based on what you are saying, everyone either needs to have/learn/use Pro apps only or have/learn/use iApps only. Don't Cross the Streams!!
    I guess that means Apple will need to fix DVD Studio Pro. It uses photos that are in your iPhoto library and music from iTunes (iApps in a Pro app??....for shame...."it was never intended"). Also, DVD SP won't read the Aperture library. Does that mean there are 3 platforms? Pro, iApp and Mediocre??
    Now I have 2 questions:
    1. Can someone please tell me which apps are Pro and iApp, or if there is Mediocre? I don't want to mix them up and "Cross the Streams".
    2. Again....is there anyway to use Aperture with iWeb?
    TIA,
    Narvon

Maybe you are looking for