Exporting a project into an external HD as a file

I do not use the vault in Aperture mainly because I could never get back into it to retrieve my pictures. (Apple has made this way to difficult) I would like to use an external harddrive and just export my projects monthly into a folder. I have tried doing this from Aperture. It exports the Apeture application into the folder (you click on it and it opens Aperture). How do I export just the pictures into the folder?
Thanks for your help

1. it is actually really easy to dig into a vault - right(option) click show package contents ... but you will only get the masters - not edited versions ... since it is non-destructive ...
2. when exporting a project you actually export a package - right(option) click show package contents ... you double click a project, it is set to open with aperture - simple ...
3. if you want just the masters and no information to what adjustments are applied, etc ... select the images and then export masters (shift-command-s) ... if you want the edited versions then export versions (shift-command-e) ... with either you cna select a sub-folder format that puts each image into a folder based on your criteria ...
from what it sounds like what you want, you want to archive old projects and keep all data intact, but still be able to go back and access the image for various reasons, right ???
have you thought of doing a referenced archive that keeps a jpeg preview in your library ???
not ot sound like a *****, but i think you do not understand what and why aperture does what it does ... a good idea would be to read "Apple Pro Training Series: Aperture 1.5" by Orlando Luna and Ben Long ...
http://www.amazon.com/Apple-Pro-Training-Aperture-1-5/dp/0321496620/ref=pdbxgy_sw_imgb/104-6572435-9821548
and check out these aperture articles ...
http://homepage.mac.com/bagelturf/aparticles/aparticles.html

Similar Messages

  • I am using Iphoto 11 ver 9.4.3 on mac using oxs 10.8.5 i want to export calendar projects to an external hard drive. what is the easiest way to do this? i have tried export and import but it didn't seem to work.

    I am using Iphoto 11 ver 9.4.3 on mac using oxs 10.8.5 i want to export calendar projects to an external hard drive. my goal is to store them in an external hard drive so it doesn't use up memory on the mac hard drive. is it possible to copy the specific projects without copying the entire library? what is the easiest way to do this? i have tried export and import but it didn't seem to work.

    What do you not understand?
    You can duplicate the iPhoto library (command - D ) and delete everything except the project and its photos from the copy and move that
    Or
    However the calendar takes very little space - it is simpy database entries - it is the photos in the calendar that take space - and for most people you would wnat to keep those photos in your library
    you can use a photo in 50 calendars and it still is only one photo in your library - as I explained calenders do not exist as such - they are simply database entries telling iPhotop how to display the calendar - they take almost no space at all
    LN

  • How can I export a project on an external drive in the latest version of iMovie?

    Before the latest release of iMovie I easily managed to export a project on an external usb drive and re-import such project on a different Mac... In the latest iMovie version, however, I cannot see my drive any more..
    So, how can I export a project on an external drive in the latest version of iMovie?
    Thank you in advance

    I'm not sure this is the best way, but you could create a new iMovie Library, move your project to that Library, then close the library. Then move the Library to your USB drive. Then, on the other Mac, in iMovie open the Library.

  • Export XML data into multiple worksheet of an Excel file..using FO processr

    Hi,
    I need to export XML data into Excel output, the data should flow into multiple worksheet of the Excel file.
    Let me know if this can be done using XML publisher. If yes, please provide me the steps to do the same.
    Could not able to achieve this through by the below process:
    (1)     Created a RTF (which has single excel table structure).
    (2)     Generated the XSL file using XSL-FO Style Sheet.
    (3)     Passed the XSL file and XML
    which exported the data into an Excel (single worksheet) format.
    Please let me know, how this can be exported into multiple worksheets.
    Thanks & Regards,
    Dhamodaran VJ.

    Hi Dhamodaran ,
    pass me the template you created and XML. "Created a RTF (which has single excel table structure)."
    Let me have a look at it,
    For ID, look at profile.

  • Exporting JOGL project in Eclipse to an executable jar file

    I'm currently using Eclipse on Windows as my IDE and I've gotten [JOGL |https://jogl.dev.java.net/] to work on it, however if I try to export the project (I've just got a simple example that runs perfectly through eclipse) to an jar file (either the JAR or Runnable JAR option) the jar file doesn't do anything. If I go to the command line and type "java -jar <the jar file> -Djava.library.path=<where the library files are>" it gives this error:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no jogl in java.library.path
            at java.lang.ClassLoader.loadLibrary(Unknown Source)
            at java.lang.Runtime.loadLibrary0(Unknown Source)
            at java.lang.System.loadLibrary(Unknown Source)
            at com.sun.opengl.impl.NativeLibLoader.loadLibraryInternal(NativeLibLoader.java:189)
            at com.sun.opengl.impl.NativeLibLoader.access$000(NativeLibLoader.java:49)
            at com.sun.opengl.impl.NativeLibLoader$DefaultAction.loadLibrary(NativeLibLoader.java:80)
            at com.sun.opengl.impl.NativeLibLoader.loadLibrary(NativeLibLoader.java:103)
            at com.sun.opengl.impl.NativeLibLoader.access$200(NativeLibLoader.java:49)
            at com.sun.opengl.impl.NativeLibLoader$1.run(NativeLibLoader.java:111)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sun.opengl.impl.NativeLibLoader.loadCore(NativeLibLoader.java:109)
            at com.sun.opengl.impl.windows.WindowsGLDrawableFactory.<clinit>(WindowsGLDrawableFactory.java:60)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Unknown Source)
            at javax.media.opengl.GLDrawableFactory.getFactory(GLDrawableFactory.java:106)
            at Snippet209.main(Snippet209.java:75)Clearly I'm missing something. I want to make a jar file that I can send to an arbitrary computer and it will run the JOGL program with no extra steps (or at least as few as possible). Any help would be greatly appreciated with some Duke stars ;-)

    Ok, sounds like it would work, although I've never done much with loading libraries like you describe, so I could use some extra notes on it.
    I got this code from here and followed the instructions on there too to get JOGL to work with Eclipse:
    * Copyright (c) 2000, 2005 IBM Corporation and others. All rights reserved.
    * This program and the accompanying materials are made available under the
    * terms of the Eclipse Public License v1.0 which accompanies this distribution,
    * and is available at http://www.eclipse.org/legal/epl-v10.html Contributors:
    * IBM Corporation - initial API and implementation
    * SWT OpenGL snippet: use JOGL to draw to an SWT GLCanvas For a list of all SWT
    * example snippets see http://www.eclipse.org/swt/snippets/
    * @since 3.2
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import javax.media.opengl.GL;
    import javax.media.opengl.GLContext;
    import javax.media.opengl.GLDrawableFactory;
    import javax.media.opengl.glu.GLU;
    import org.eclipse.swt.SWT;
    import org.eclipse.swt.graphics.Rectangle;
    import org.eclipse.swt.layout.FillLayout;
    import org.eclipse.swt.opengl.GLCanvas;
    import org.eclipse.swt.opengl.GLData;
    import org.eclipse.swt.widgets.Composite;
    import org.eclipse.swt.widgets.Display;
    import org.eclipse.swt.widgets.Event;
    import org.eclipse.swt.widgets.Listener;
    import org.eclipse.swt.widgets.Shell;
    public class Snippet209
         static void drawTorus(GL gl, float r, float R, int nsides, int rings)
              float ringDelta = 2.0f * (float) Math.PI / rings;
              float sideDelta = 2.0f * (float) Math.PI / nsides;
              float theta = 0.0f, cosTheta = 1.0f, sinTheta = 0.0f;
              for (int i = rings - 1; i >= 0; i--)
                   float theta1 = theta + ringDelta;
                   float cosTheta1 = (float) Math.cos(theta1);
                   float sinTheta1 = (float) Math.sin(theta1);
                   gl.glBegin(GL.GL_QUAD_STRIP);
                   float phi = 0.0f;
                   for (int j = nsides; j >= 0; j--)
                        phi += sideDelta;
                        float cosPhi = (float) Math.cos(phi);
                        float sinPhi = (float) Math.sin(phi);
                        float dist = R + r * cosPhi;
                        gl.glNormal3f(cosTheta1 * cosPhi, -sinTheta1 * cosPhi, sinPhi);
                        gl.glVertex3f(cosTheta1 * dist, -sinTheta1 * dist, r * sinPhi);
                        gl.glNormal3f(cosTheta * cosPhi, -sinTheta * cosPhi, sinPhi);
                        gl.glVertex3f(cosTheta * dist, -sinTheta * dist, r * sinPhi);
                   gl.glEnd();
                   theta = theta1;
                   cosTheta = cosTheta1;
                   sinTheta = sinTheta1;
         public static void main(String[] args)
              final Display display = new Display();
              Shell shell = new Shell(display);
              shell.setLayout(new FillLayout());
              Composite comp = new Composite(shell, SWT.NONE);
              comp.setLayout(new FillLayout());
              GLData data = new GLData();
              data.doubleBuffer = true;
              final GLCanvas canvas = new GLCanvas(comp, SWT.NONE, data);
              canvas.setCurrent();
              final GLContext context = GLDrawableFactory
                        .getFactory().createExternalGLContext();
              canvas.addListener(SWT.Resize, new Listener()
                   public void handleEvent(Event event)
                        Rectangle bounds = canvas.getBounds();
                        float fAspect = (float) bounds.width / (float) bounds.height;
                        canvas.setCurrent();
                        context.makeCurrent();
                        GL gl = context.getGL();
                        gl.glViewport(0, 0, bounds.width, bounds.height);
                        gl.glMatrixMode(GL.GL_PROJECTION);
                        gl.glLoadIdentity();
                        GLU glu = new GLU();
                        glu.gluPerspective(45.0f, fAspect, 0.5f, 400.0f);
                        gl.glMatrixMode(GL.GL_MODELVIEW);
                        gl.glLoadIdentity();
                        context.release();
              context.makeCurrent();
              GL gl = context.getGL();
              gl.glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
              gl.glColor3f(1.0f, 0.0f, 0.0f);
              gl.glHint(GL.GL_PERSPECTIVE_CORRECTION_HINT, GL.GL_NICEST);
              gl.glClearDepth(1.0);
              gl.glLineWidth(2);
              gl.glEnable(GL.GL_DEPTH_TEST);
              context.release();
              shell.setText("SWT/JOGL Example");
              shell.setSize(640, 480);
              shell.open();
              display.asyncExec(new Runnable()
                   int     rot     = 0;
                   public void run()
                        if (!canvas.isDisposed())
                             canvas.setCurrent();
                             context.makeCurrent();
                             GL gl = context.getGL();
                             gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
                             gl.glClearColor(.3f, .5f, .8f, 1.0f);
                             gl.glLoadIdentity();
                             gl.glTranslatef(0.0f, 0.0f, -10.0f);
                             float frot = rot;
                             gl.glRotatef(0.15f * rot, 2.0f * frot, 10.0f * frot, 1.0f);
                             gl.glRotatef(0.3f * rot, 3.0f * frot, 1.0f * frot, 1.0f);
                             rot++;
                             gl.glPolygonMode(GL.GL_FRONT_AND_BACK, GL.GL_LINE);
                             gl.glColor3f(0.9f, 0.9f, 0.9f);
                             drawTorus(
                                       gl, 1, 1.9f + ((float) Math.sin((0.004f * frot))),
                                       15, 15);
                             canvas.swapBuffers();
                             context.release();
                             display.asyncExec(this);
              while (!shell.isDisposed())
                   if (!display.readAndDispatch())
                        display.sleep();
              display.dispose();
    }I have set up a project in eclipse with that file in the default package. I have created a libs/ folder in the project and I have the following files in it:
    gluegen-rt.dll
    gluegen-rt.jar
    jogl.dll
    jogl.jar
    jogl_awt.dll
    jogl_cg.dll
    swt.jarMy project is using the 3 jar files as libraries and I don't need to explicitly say anything about the dll files.

  • How could I export FCE project into XML format?

    Hello,
    I recently decided to upgrade from Final Cut Express to Final Cut Pro X. But I don't seem to be able to export my FCE unfinish projects. That is because FCE  does not export into XML format !!!
    Does anyone knows how to have FCE to generate a XML file? Or to have the FCP file format converted into a XML file format?
    Thanks

    If you are editing in FCE4, then you can open your FCE Project in FCP6 or FCP7 and do the .xml export there. Once you have that .xml file, you need to use the software 7toX to convert the file to FCP-X.
    http://assistedediting.intelligentassistance.com/7toX/
    It should be noted that the conversion of a sequence file to .xml and then .xml to FCP-X may not pass 100% of the information.
    There is information about what is and is not translated here:
    http://assistedediting.intelligentassistance.com/7toX/about.html
    MtD

  • How to export imovie project into current idvd project

    I currently have an idvd project that I have added lots of extra stuff to (slide shows, backgrounds, menus, etc.) I'd now like to add another movie to it from imovie that I have added chapter markers to, so it will run as a separate movie with chapters in idvd.
    Can this be done?

    Yes.
    In iMovie export the movie to the Media Browser and it will appear in the media selection area in iDVD.
    Just drag it into your DVD project.

  • How do you export iPhoto albums to an external drive and have all the albums still labeled?

    I am having an issue exporting the iphoto albums to an external drive. When I do it, it either just drops all the pictures in together or it separates them by events, but my iphotos are arranged in albums, not events so that doesn't help.  Can anyone help with this?
    Also, I'm new to mac and i'm noticing iphotos has a lot of limitations...I can't save photos automatically to folders/albums in iphoto bc it doesnt show in the finder, I can't upload to facebook without doing it from iphoto, and I obviously can't save to external drive easily just yet.  Should I just be saving all of my photos in Pictures in the finder? Is there a way you can save them in pictures and then be able to open them in iphotos? I'm getting so frustrated and ready to go back to my PC. =(

    A couple of general comments:
    1. iPhoto is not compulsory. You don't have to use it.
    2. But if you do, then you're going  to need to make a small conceptual leap, and learn just a little.
    The Conceptual Leap: Your Files and your Photos are not the same thing. The illustration I use is as follows: In my iTunes Library I have a file called 'Let_it_Be_The_Beatles.mp3'. So what is that, exactly? It's not the song. The Beatles never wrote an mp3. They wrote a tune and lyrics. They recorded it and a copy of that recording is stored in the mp3 file. So the file is just a container for the recording. That container is designed in a specific way attuned to the characteristics and requirements of the data. Hence, mp3.
    Similarly, that Jpeg is not your photo, it's a container designed to hold that kind of data. iPhoto is all about the data and not about the container. So, regardless of where you choose to store the file, iPhoto will manage the photo, edit the photo, add metadata to the Photo but never touch the file. If you choose to export - unless you specifically choose to export the original - iPhoto will export the Photo into a new container - a new file containing the photo.
    The Learning: iPhoto replaces the Finder (or file browser) for everything to do with your Photo. And I do mean everything. Organising, Editing, sharing with other apps, printing, uploading, whatever are all done either with or via iPhoto. It's you "go-to" for anything to do with your Photos.
    The upshot of that is that how (or where) the files are stored doesn't matter - as long as they are safe and backed up - because after importing to iPhoto you never directly access those files again.
    So, you want to organise your Photos: do it in the iPhoto Window. Events, Albums, Keywords, and so on. You do all your work via that window or the media browsers that make the Library available in every app in the OS.
    So: want to edit a photo, but not with iPhoto? You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    How to access the Photos for whatever reason you may need them see this user tip:
    https://discussions.apple.com/docs/DOC-4491
    For details of the Export dialogue: https://discussions.apple.com/docs/DOC-4921
    You can more or less recreate your folder tree in the iPhoto Window - start at the bottom of your tree and drag  folder of images to the Albums Heading. iPhoto will import the images and make an album of them. Then File -> New Folder and drag the Album to that. Folders can hold nested folders and Albums. And so work from there.
    But if your folder tree is date based that's a bit pointless, as the Calendar search and Smart Albums make it pretty redundant. With these you can find any photos from a specific day, week, month, year or date-range in the Library.
    If the folder tree is theme based, then keywords will a more effective way of working.
    And Albums are more flexible that folders in the Finder, as an image can be in any number of Albums and use no extra disk space whatever.
    So, it's a whole new way of working with photos for you.
    To your specific questions:
    I am having an issue exporting the iphoto albums to an external drive. When I do it, it either just drops all the pictures in together or it separates them by events, but my iphotos are arranged in albums, not events so that doesn't help
    Export them one album at a time.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.
    But given the above... why are you doing this? You're defeating the non-destructive workflow by doing it. Are you trying to back up?
    .I can't save photos automatically to folders/albums in iphoto bc it doesnt show in the finder,
    Not clear exactly what you're asking here, but does the above open some ideas?
    I can't upload to facebook without doing it from iphoto
    Yeah you can... For help accessing your photos in iPhoto see this user tip:
    https://discussions.apple.com/docs/DOC-4491
    It's the first one...
    and I obviously can't save to external drive easily just yet.
    Yeah you can but what exactly are you trying to save, and, again, why? Different purposes have different workflows.
    Should I just be saving all of my photos in Pictures in the finder?
    That's a personal choics, but not if you plan on using iPhoto. And as I started with iPhoto is not compulsory... As to why you shouldn't with iPhoto:
    For more on iPhoto and file management see this User Tip:
    https://discussions.apple.com/docs/DOC-6361
    Reasons for bothering to learn...
    I use Events simply as big buckets of Photos: Spring 08, July - Nov 06 are typical Events in my Library. I use keywords and Smart Albums extensively. I title the pics broadly.
    I keyword on a
    Who
    What
    Where basis (The When is in the photos's Exif metadata). I also rate the pics on a 1 - 5 star basis.
    Using this system I can find pretty much find any pic in my 50k library in a couple of seconds.
    So, for example, I have a batch of pics titled 'Seattle 08' and a  typical keywording might include: John, Anne, Landscape, mountain, trees, snow. With a rating included it's so very easy to find the best pics we took at Mount Rainier.
    File -> New Smart Album
    set it to 'All"
    title contains Seattle
    keyword is mountain
    keyword is snow
    rating is 5 stars
    Or, want a chronological album of John from birth to today?
    New Smart Album
    Keyword is John
    Set the View options to Sort By Date Ascending
    Want only the best pics?
    add Rating is greater than 4 stars
    The best thing about this system is that it's dynamic. If I add 50 more pics of John  to the Library tomorrow, as I keyword and rate them they are added to the Smart Album.
    In the end, organisation is about finding the pics. The point is to make locating that pic or batch of pics findable fast. This system works for me.

  • Export AE Animation into iOS

    I'm working with an illustrator to take After Effects animations and put them into iOS code (SpriteKit specifically).
    We would like an automated system that takes a complicated After Effects animation (like the one below) and turns it into something iOS/Objective-C/SpriteKit can understand. Or, if this is not the correct process, how do others usually create AE animations in iOS?
    Here are a list of resources that I've explored, but none of them actually solve my problem:
    Work with Adobe after effects. Possible or impossible? - Cocos2D Forum
    CreativeCOW
    After effects for game development? | BP | I make video games and fun software by fractional distillation.
    Thanks in advance!
    - Rhys

    As for AE, I haven't found anything additional to the links you have provided in your initial post. By the way, have you tried the GibsonXML + Shade Dogs scripts approach from bp.io? Is it worth using and adapting to SpriteKit?
    Here's some kind of a summary of the options that use Flash or other design environments:
    Flash > Flump (open-source) > Starling (cross-platform) or Sparrow (open-source Objective-C 2D game engine)
    Flash > Flump (open-source) > Build a custom SpriteKit runtime for Flump's JSON output
    Flash > DragonBones plugin (open-source) > zrong/dragonbones-for-cocos2d-x · GitHub for cocos2d-x
    Flash > DragonBones plugin (open-source) > Build a custom SpriteKit runtime for DragonBones JSON format
    Flash > open-source converters/players such as musictheory/SwiffCore · GitHub (looks like a plain Flash player on iOS) or gree/lwf · GitHub (includes UIKit runtime); they do not support SpriteKit out of the box.
    Spine (license required) > one of the official runtimes for cocos2d-iphone/cocos2d-x/Unity/libGDX/Starling/etc. There are also two unofficial runtimes for SpriteKit, see this tutorial: http://www.raywenderlich.com/59535/integrating-spine-spritekit-tutorial
    Level Helper 2 (free trial) supports SpriteKit
    SpriteBuilder (a.k.a CocosBuilder) > cocos2d; they've also had SpriteKit support but abandoned it. See apportable/SpriteBuilder-SK · GitHub
    Flash > GAFMedia extension (license required) > cocos2d-iphone/cocos2d-x/Starling/etc.; no SpriteKit support
    It would be great to use SpriteKit but it looks like it is required to build your own custom runtime first to support animations produced in Flash or AE.
    Have you considered exporting AE projects into Flash?

  • Export/Import Project problems

    I have two machines: a PowerMac (G5) and a MacBook Pro (Intel Dual Core). Both 2GB RAM, running OS X v10.5.6 and Aperture 2.1.2. (More tech spec info available if anyone thinks it relevant).
    I have built up a project on the MacBook Pro, creating albums, creating stacks and making picks within the stacks, making adjustments to each of the picks and then creating a book.
    I now want the project on the PowerMac G5, which is my master machine and contains all my other projects.
    On the MacBook Pro I exported the project and then copied the resulting .approject file to the PowerMac. I then imported the project into Aperture from there. On a cursory scan, everything seems fine and in the Projects Inspector it shows 1376 images against the project on both machines. However, if I look more closely, I've lost all my picks. I.e. I need to go through every stack again and reselect my picks (very boring).
    It gets worse when I look at the Book within the project - it's lost the positionings (i.e. I double clicked on the image and moved it around slightly to get the best crop for the selected box shape). And then I did a Close All Stacks and it deleted every picture from the book so all 60 pages were empty again and the images were all back down in the film strip!
    At this point, my immediate thought was the .approject file got corrupted during the copy, but I've done a recursive diff (diff -qr fileA fileB) between the file on the MacBook Pro and the file on the PowerMac and it reported no differences at all.
    Has anybody else had similar problems? Is the project import/export known to be flakey? Better yet, anybody know of any workarounds?
    Thanks in advance for any help anyone can offer.
    Darren

    OK - I've tried eliminating some of the variables and it turns out the two-machines-issue is a bit of a red herring and this is a straightforward Export/Import bug in Aperture.
    On a single machine (2.16GHz Intel Core Duo MacBook Pro with 2GB RAM, running OS X 10.5.6 and Aperture 2.1.2 (build 3G13)) I have a project with many images. I create versions of these images and apply adjustments (Sharpness, Monochrome Mixer, Exposure, Enhance, etc.). I then make the adjusted version the Pick and I've created a 62 page book from these Picks.
    Now I export the project (i.e. in the Project Inspector I right-click the project and choose Export > Project). I export the project to a file on the desktop and rename the existing project in Aperture. I now import the saved .approject file and I find that all my (long and carefully chosen) Picks are no longer Picks. (I've tried this a few times and ruled out the possibility of a corrupt export file).
    As a result, when I select the Book I get the "Non-Pick Images" dialog with the dreaded "One or more placed items are no longer the pick of a stack." message.
    I have two options at this point: "Use Current Pick" ruins the book - I have to go through and work out all the picks again (and also re-pan all the images within the Photo Boxes as this data has also been lost).
    Or I can choose "Create new Version", which appears to preserve my book's original look (I haven't looked in too much detail yet), but my project now contains a couple of hundred more images than it used to (or at least extra versions which, whilst I know these are relatively 'cheap', are still unnecessary) and this still doesn't help with my other albums and light tables, which still have incorrect images shown as the Picks.
    I'm finding this quite a worry - I originally hesitated to move my photo library into Aperture due to the thought of losing the metadata one day if I moved from Aperture to something else, but in the end I decided to trust that something as simple-to-test as Export/Import would get properly implemented - now I'm beginning to fear that it doesn't even within the same version of Aperture, never mind different versions of Aperture or (heaven forbid) different applications altogether

  • Importing entire project into DTR

    Hello All,
    I need to put my project into DTR.
    Can i import my entire project into DTR inspite of doing it file by file.
    Thanks & Regards
    Abhivyakti

    Since my colorsit doesn't have CS4, I nested sequences in another timeline so that when I imported project in AE my colorist could see the one clip nest and click it to see other timeline to see all clips detail.
    Thank you.

  • Problem opening a project into NWDS - Files and Folders disappears!

    Hi Gurus,
    My co-worker developed a Web Dynpro    project in your PC, so I copied all files and folders to my PC.
    When I import this project into NWDS in my PC some files and folders strangely disappears physically from Windows causing error in project!
    Somebody haves idea what is happening?
    Thanks!
    Robson

    Hi,
    Follow these steps , how to import a Web Dynpro project in to NWDS.
    http://help.sap.com/saphelp_nw04/helpdata/EN/80/c12041aa7df323e10000000a155106/content.htm
    Thanks
    Krishna

  • Problem importing adobe premiere project into After effects CS6

    I've been working in Adobe's premiere and after effects for quite a few years now and this problem is new to me.
    I'm working on a project in After Effects CS6 and want to import a premiere pro project into After Effects. I go -> File -> import -> adobe premiere project
    Select project
    Select sequence
    Now After Effects CS6 imports all files from the premiere pro project like before in CS5, but now also imports the videofiles as sequences at the root in my project panel and messes everything up. Before it usually imported nice and tidy with the same folder structure as the premiere pro project would have.
    But that isn't the main problem. When i open the sequence i wanted to import and work on, some clips have been shortened down to 1 FRAME LONG  at the end. These clips have a 500% speed  in premiere pro, but this has never been a problem before, after effects has always before been able to translate the speed variations in clips from premiere -> after effects.
    The adobe premiere project that was imported is a 60 sec promo with various clips in various formats (Gopro h264, dv pal quicktime etc). Footage not exceeding the fair amount that after effects should handle. 15-20 videfiles at 30 sec each.
    I've never had this problem before with premiere <-> after effects.
    Anyone?

    I just found the solution!
    In my adobe premiere project that i was trying to import, some of the clips were "right clicked" and applied "Scale to frame size"
    Every videoclip that had "scale to frame size" in my adobe premiere pro sequence would import as its own composition in After Effects rather than just a videofile, and some of the clips would be trimmed down to be invisible.
    So if you have any problem with a clip not importing correctly into a sequence in after effects, check to make sure "scale to frame size" is not applied to the clip in premiere pro.
    I removed the scale to frame size in the premiere project and now everything imports fine into after effects.
    Sorry for the post.

  • How do I move a project from an external drive back into Imovie

    I recently bought an Iomega external hard drive to store documentary movies so that I wouldn't jam up my Imac's free space. However, after I moved an imovie/idvd project to it, and wanted to make changes, I could not move the project back into the Imac's drive. (It also would not burn from the external, giving me a multiplex error) When I tried to move the movie back into Imovie on the Imac it said Quicktime couldn't parse it. I saw various posts about parsing, but not about specifically about moving a project from an external drive. Can anyone offer any suggestions? It seems to me that I should be able to move a project back and forth without that much trouble.

    Sounds like you have a DVD format (MPEG-2) and not an iMovie Project file.
    The key phrases are "multiplex" and "parse". Both suggest MPEG-2 format when opened in QuickTime. It would also throw an error -2048 message if MPEG-2.
    But another issue could be the file format of the external drive. Most ship pre-formatted for the Windows OS's but a Mac user should format using HFS+ (and others). If you didn't format the drive before moving the large iMovie Project onto it it may have become severely fragmented if the external used FAT 16 or FAT 32 (very common) formats. They have a 2 or 4 GB file size limit, respectively and would have made your Project unreadable when moved back and forth.
    Use the Disk Utility app to find out the format of your external drive.

  • Export / Import Mapping into Different Project in same repository

    Hi,
    Any one tell me, its this possible?
    We have one repository ( OWB 10 R2 ) and two projects named dev_project and test_project.
    We want to copy or (export /import) the mappings from dev_project to test_project, how to do this? It seems export and import can be done if the servers are different (also it is possible to recover from the back up to the same server and same project.)
    Thanks in advance
    -NB

    I don't use 10gr2, but with 9.2 it is possible to do this, but you need to modify the MDL file before importing it.
    ** Before doing this, I'd recommend you export everything from your design repository to be safe **
    Export the object(s) from DEV_PROJECT to an MDL file. Then open the MDL file in your favorite text editor and rename the project from DEV_PROJECT to TEST_PROJECT. Then import the MDL file back into the repository matching by name (NOT UOID).
    I'd recommend you not do this, however. Why do you need a seperate project for test and dev? Why not create another runtime repository connection in your project so that you can deploy to both the development and test environment from the same project?

Maybe you are looking for

  • How good is LR at replacing physical ND filter?

    How good is LR's ND filter function? Can it replace a physical ND filter? Once you blow highlight, I doubt any software can recover to a decent degree. What are the limitations of LR's ND filter function then?

  • I want to run the h:outputText in a loop and with command link

    I have a managed bean property of type Collection (ArrayList). These collection elements should be displayed a series of hyperlinks separated by commas. can i refer the collection element with an index from h:outputText tag Thanks in advance.

  • 2 iPods and 1 iBook

    How can my husband and I share iTunes on one iBook to update our 2 iPods? We each have an iPod. Do we transfer our music manually or automatically? Do we need to create a log-on profile for each of us before we transfer our music to the iPods. We sha

  • Strange DHCP client identifier

    I am troubleshooting DHCP between server and client (both Cisco IOS). I have discovered, that server sees client under completely nosensical client identification: R1#sh ip dhcp binding Bindings from all pools not associated with VRF: IP address Clie

  • Acs se aaa server problem

    HI I have installed acs se for peap authenetication in a wireless network . however when i install the acs se it shows me 2 profiles (self and deliverance) after initial config in the aaa server window of network configuration . The name of the defau