PSD layer placement

Hi,
I have a photoshop document where all the layers are placed in specific positions in the frame. When I import the PSD file into Aftereffects however all of the layers appear in the center.  Is there any way for me to have the layers in Aftereffects to be in the same place as I have them in Photoshop?

Try importing as a comp with these settings:

Similar Messages

  • Is there a way to read/write original .xmp settings of a CR2 loaded as smart object onto a .psd layer?

    Hello all. This has been asked in varying degrees before, but many of the discussions I found relative to my question are from the period 2010 to 2013. Thought I would throw this out there again medio 2014 to see if anything new has developed that I'm somehow missing.
    Here's the situation:
    1. In the filesystem, a CR2 file and a sidecar .xmp file with ACR settings applied via Bridge (CS6).
    2. CR2 file is opened in Photoshop (CS6) as a smart object (.xmp sidecar settings are applied in the process).
    3. CR2 file and .xmp now exist on a .psd layer as a smart object...in some unknown form.
    4. File is saved as .psd
    My question is this:
    Is there ANY way at all via Bridge and/or Photoshop scripting to read/write/access/touch/poke/prod the original ACR "development" settings, originally stored in the .xmp sidecar file, that apparently now exist in some form on the smart object layer in the .psd? Via scripting in Bridge, one can alter the metadata on this saved .psd file, no problem, but this is not the same .xmp data that is being referenced by the image loaded as a smart object onto the .psd layer in that file. Where is this second set of data? Can it be accessed?
    Any info, enlightenment would be much appreciated. Thanks.

    No, not too late.
    InDesign is for layout for press in this case.
    Photoshop is for design, which is using the .jpg's.
    I'm half way there, but stuck at:
    Getting a file location reference when the .jpg is first brought into PS as a layer.
    Getting a script to write the location of the file into the medata for the PSD in some field
    Reading back the metadata file location for the .jpg and bringing it back into the PSD again.
    Any help would really be appreciated.
    I can make the completed script(s) available when its complete, as this has possibilities for other uses, batch process, and more.

  • Action script for batch-opening psd layer files flat? (alt+shift?)

    hi
    i am daily batch processing with an action script to make flat tiffs from psd layer files, like 10-100 files every couple of days in my workflow.
    until now i could not fine a solution to begin the batch processing-action with opening layer files FLAT.
    the reason is: i am working with huge files, 5-20GB .psb files, (16bit, ECI-RGB, 50x100cm, 300dpi) and it takes a couple of seconds to open with my pcie-SSD.
    that multiplies the time it takes to open 50 of such files. i would gain a lot of time, if photoshop cs6 would not open it with layers, but flat.
    there is a workaround i am using daily: (osx) hold alt+shift, then click on the layer file in the finder and cs6 opens it flat.
    but that did not work in the action script. it doesnt store the keyboard command alt+shift.
    any idea how i could save time and use the alt+shift command in the action script or any other solution please?
    thanks
    peter

    I just tried to record this using ScriptListener, and it didn't record it either.  No indo in the ExtendScript SDK on this either.  I don't think that this is possible at this time.  Maybe someone who know more than I do can find a way.

  • Managing PSD Layer Comps within InDesign for digital development

    Greetings. I have been making an internal bid in my company to evolve from using all inclusive PSD layer comps for digital development hand off to, creating a PSD layer comp with ONLY unique elemnts then handle content and manage layer within InDesign. I wanted to see if anyone out there has had any experience in using this process for themselves or as part of a company worklfow.

    I do it often. Important in InDesign is, that you look into the import options. A trap is that if the options were wrong, when you change a layer's visibility it will change it in InDesign inadvertently.
    I think it also important to use RGB images to get out most in aspect of flexibility.

  • Need script to batch import images into PSD layer

    Hi,
    I have a large group of identically sized Illustrator PDF images (I could convert these to jpeg and resize separately...). I need to import each of these into a specific part of another image, which will always be constant  The incoming image should be the back layer and the file should be saved as a jpeg, and named after the incoming image's file name. 
    What's the best approach here?
    Thanks, everybody. 

    Hello.
    I've tried to adapt this script I to  update a sprite sheet.
    The sprite sheet contains 6 smart objects, which where created by importing PSD containing 1 transparent rasterized layer, converting to SmartObjects, then repositioning and scaling.
    The script has two faults. Either it runs and replaces the images, but moves them about vertically.
    Or it simply throws an "General Photoshop Error. This method may not be.. etc" error and highlights this line :
    executeAction( idplacedLayerEditContents, desc2, DialogModes.NO );
    I'm still getting to grips with the completely bonkers API, looking at what looks like assembly language bubbling up through the "baretail" application.
    Any tips as to why it's erroring out or coming in in the wrong places vertically (looks OK horizontally) most appreciate.
    It's the bizarre intermittent error that bugs me most, sometimes it runs and does it wrong, sometimes I just get a bing  noise.
    Script is here :
    http://www.charlescrammond.co.uk/downloads/ReplaceContentsOfSmartObjects.jsx
    Sample PSDs I'm using are  here :
    http://www.charlescrammond.co.uk/downloads/spritesheet.zip
    any help much appreciated! meanwhile, I guess back to the UI and manually doing it
    Charles
    /// Script to automate replacing contents of smart layers with selected psds
    /// Sometimes it just about works, and replaces the images fine but moves them down vertically.
    /// Sometimes it throws an error at :
    ///  executeAction( idplacedLayerEditContents, desc2, DialogModes.NO );
    #target photoshop
    if (app.documents.length > 0)
       var myDocument = app.activeDocument;
       var thePath = myDocument.path;
       var pngopts = new PNGSaveOptions();
       pngopts.interlace = false;
    function swapImages()
          // select files;
          if ($.os.search(/windows/i) != -1)
             var theFiles = File.openDialog ("please select files", "*.psd;*.psb", true)
          else
             var theFiles = File.openDialog ("please select files", getFiles, true);
          if (theFiles)
             // work through the array;
             for (var m = 0; m < theFiles.length; m++)
                // open smart object; in active document
                var getLayerToChange = app.activeDocument.artLayers[m];
                app.activeDocument.activeLayer = getLayerToChange;
                var smartObject = openSmartObject (getLayerToChange);
                // get a reference to the layer within
                var theLayer2 = smartObject.activeLayer;
                // replace smart object;
                if (theLayer2.kind == "LayerKind.SMARTOBJECT")
                   replaceContents (theFiles[m]);
                   // This closes the current image source file.
                   smartObject.close(SaveOptions.SAVECHANGES);  
                   // not  sure this is needed but what the hell
                   delete smartObject;
             //save png;
             $.writeln("Saving a PNG");
             myDocument.saveAs((new File(thePath+"/"+"spritesheet.png")),pngopts,true);
    ////// get psds and psb  from files //////
    function getFiles (theFile)
       if (theFile.name.match(/\.(psd|psb)$/i))
          return true
    ////// replace contents //////
    function replaceContents (newFile)
       var idplacedLayerReplaceContents = stringIDToTypeID( "placedLayerReplaceContents" );
       var desc3 = new ActionDescriptor();
       var idnull = charIDToTypeID( "null" );
       desc3.putPath( idnull, new File( newFile ) );
       var idPgNm = charIDToTypeID( "PgNm" );
       desc3.putInteger( idPgNm, 1 );
       executeAction( idplacedLayerReplaceContents, desc3, DialogModes.NO );
       return app.activeDocument.activeLayer
    ////// open smart object //////
    function openSmartObject (theLayer)
       if (theLayer.kind == "LayerKind.SMARTOBJECT")
          var idplacedLayerEditContents = stringIDToTypeID( "placedLayerEditContents" );
          var desc2 = new ActionDescriptor();
          // why does this line here throw errors sometimes, and sometimes not.
          executeAction( idplacedLayerEditContents, desc2, DialogModes.NO );
       return app.activeDocument
    // Call main function
    swapImages();

  • PSD Layer Comps and updating links

    I love InDesign's ability to show/hide PSD layers in InDesign, and especially to display Layer Comps of PSD files.
    But InDesign seems to have trouble "remembering" which layers / Layer Comps to show when updating links.
    An example:
    Let's say a product exists in 3 versions: black, white and blue.
    A PSD contains a productshot in these 3 color versions using some common and some color-specific layers. A Layer Comp with the color name is assigned to each set of layers that displays the according color version.
    Now it's easy to place the PSD in InDesign, choose 'Object Layer Options' (which can contain multiple other layers) and set the correct Layer Comp (eg: "blue").
    I set 'When Updating Link' to 'Keep Layer Visibility Overrides' to make sure InDesign remembers the correct color when the PSD is edited.
    Now you feel the trouble coming… let's say an extra color red should be added. I add the red version (including a 'red' layer comp) to the same PSD and save it.
    When updating existing links, InDesign messes up the existing 'Object Layer Options'. The black version will now show blue, etc…
    'Layer Comp' in 'Object Layer Options' does actually show 'blue' while it was 'black' before the update.
    Removing the red Layer Comp and save the PSD again doesn't restore the correct Layer Comp in InDesign.
    I used this feature often, and updating links never caused me any trouble until now.
    Is this a bug, or are the update link options not to be trusted (and was I just lucky in the past)…?

    Thanks for the clarification!
    I guess I was lucky with other files that retained the correct object layer options.
    Too bad for this limitation. It makes the whole object layer options feature quiet limited.
    I'll add a feature request.

  • Opening PSD Layer Folders in PSE 8

    I have a Photoshop (PSD) file that contains layer folders. How can I access the items within those folders in Photoshop Elements 8? Is there a plugin I need to add? I would like to be able to access the items inside the layer folders within PSE8 if at all possible. Thanks!

    I think I may have found something.
    http://simplephotoshop.com/buy_elements+mac.htm
    I'll give it a try later on.
    Thanks for all your help!

  • PSD layer information not preserved on import

    In updating my review/walkthrough to represent changes added by 1.1.1 ( nice work BTW! ), I came across a minor bug.
    When loading a PSD from Creative Cloud, layer information is not being preserved.  So now you can export to PSD, edit on the desktop, but there is currently no way to bring the PSD back into Photoshop Touch with layer information intact.
    A small bug, but a bug none the less.
    Great work on the updates, keep em coming!

    Hi,
    If you are referring to that there's only one layer when importing to PS Touch:
    According to "How do I open a Photoshop Touch file in Photoshop, and vice versa?" http://forums.adobe.com/docs/DOC-1336
    this is as expected:
    You can save the file with layers, but layers are flattened when the file is opened in Photoshop Touch.
    Thanks,
    Ignacio
    Message was edited by: ibarrien

  • Sync does not work with psd layer files

    My sync with cloud does not work. I also can not downoad or upload PSD files with Layers
    Message was edited by: KlausJoseph

    Hello Oliver,
    I know this is 2 years old, I have a Mac Pro from 2007. I just updated to Lion so I can use Adobe CC software. iCal has been trying to update, or upgrade as it says, and it's showing like it's doing something but it doesn't respond. Have to force quit. It's been 4 days now. I use ical extensively in my business. Any ideas on how to fix that?
    thanks,
    Scott

  • Issues with PSD layer menu and interlace "clipping" on text

    I am using Photoshop to create text-based layered menus. I'm having issues with the top and/or bottom of the text being "clipped" or cut off. If i bump the text up or down one pixle, it sometimes gets better, but it throws off the balance/spacing of the overall menu... and on text with more than one line of text, it generally creates the clipping issue on another line of text. Is there a de-interlace filter for text menus in DVD Studio 4? Is there something I can try in Photoshop? (The text I am using is 20pt, helvetica. About 95% white over a blueish background... pretty good contrast between the 2.)

    actually - just talked with a friend and discovered the problem. I created my photoshop files @720x486. When I cropped the files to 720x480, they work.
    Cool.

  • Add Tracking Mask to PSD or .PNG Layer in AE CC

    Guys, I'm pulling my hair out. Anyway you could give me a quick tip on how to apply a tracking mask to a PSD or .PNG layered on top of a movie file in AE CC? Man i'm going crazy trying to figure this out. Thank you very much in advance.
    I see here: http://tv.adobe.com/watch/learn-after-effects-cc/rigid-mask-tracker-in-afte... how to apply tracking mask to an adjustment layer, but the .PSD layer or .PNG layer mask doesn't offer the "right click > tracking mask" option.
    Please, what am I over looking? I have an AE comp with a PSD file or PNG file which has some bricks for a building, and I need the mask to track as the movie ever so slightly moves.
    Please help me. Thank you.

    Nope, that's not how it's done.  It's a little more compolicated than that:
    Duplicate the car layer.  Put it above the bricks.
    Make a mask around the  car.  Do it just before the car gets in front of the bricks.  Be very careful when masking.  Click the stopwach icon on the mask path property.
    Go forward in time until the car is just past the bricks.  Double click on the mask path you made earlier: a box forms around it.  Drag it back over the car and tweak mask vertices as necessary.
    RAM Preview and adjust the mask path as necessary.
    There you go.

  • Camera Layer and PSD

    I looked at one of the templates in bridge and observed that the timeline had photoshop layers with camera labels. Please could anyone tell me how this was achieved?  I hope I am understood?

    I mean, I have the CS4 production package and I am working with After effects. I clicked on (browse templates in bridge) and opened the bending light template. One of the nested compositions had photoshop layers but on the timeline the label color was pink (which is the color code for camera layer) instead of lilac. i dont know how this was achieved because I tried doing thesame thing in my own AE composition ie having a pink psd layer. 
    I hope I have communicated.

  • Photoshop (psd) files in FCP5

    Hello.
    Using a photoshop (.psd) layer file inside FCP5: I've done this before with wonderful delight, but this time here's the issue: the image looks excellent when I place it in the timeline. But then AFTER I render it it looks terrible. It becomes distorted as if an image before it's rendered.
    Is my explanation clear?
    Any advice?
    Thank you very much.
    Happy editing,
    Eric P

    Thank you David S.
    You solved the problem simply by asking me those questions!
    Your reply, combined with a friend's helpful advice, sparked me to check the dpi settings of the PS file. It was 72dpi and once I changed it to 300dpi it was a whole new ballgame!
    Happy editing!
    Eric P

  • Can I change PS layer comps to a single PDF?

    I have a print project and it's easier to create it in photoshop then  InDesign. It will be a booklet and printed digitally. They only accept  PDFs. My question is can I turn my psd layer comps into
    a single  PDF for the printer?

    J thanks for the tip. That works but not for my need. I want to export my layer comps as single pdf not contact sheet. Print quality. I read this elsewhere:
    • Create an InDesign document.
    • File>Place.
    • Check, Show Import Options
    • In that dialog box, Layers>Layer Comps. (specify which Layer Comp)
    Do this for all your pages. Your Layer comps are Linked and can be  easily updated or edited.
    • Save document
    • File>Export to create a multi page pdf.
    This is perfect but seems buggy it works with some layer comps on others it doesn't show the correct one.

  • How to place raster images as smart objects?

    I'm trying to duplicate Photoshop's File:Place menu functionality and I'm experiencing something that I can't figure out. (I've added my code to the end of this message.)
    I have a variety of test EPS images that I can run through the File:Place menu. They all appear on the document as "Smart Objects". That is I can then do a bunch of transforms to the image (like rotate, move, deform) before committing to the image to the document.
    The important point here is that some images, when opened by Photoshop, first ask that I "Rasterize EPS Format" while others just open up without comment.
    While doing these File:Place actions, I've been using the Listener plugin that comes with the SDK to generate code dumps of my actions. From these I've then generated my own code for placing images onto a document. I've had to re-arrange the code a bit to work in Objective-C so there's a good chance that I've done something wrong while translating.
    Now if you look at my code you notice a commented out section. If you uncomment those lines then you basically have what I got from the Listener plugin log. But the problem is that this code then doesn't act like the File:Place menu action. It creates a new layer, places the image on the page - but its gone one step too far and the image is no longer a "Smart Object". The image is committed to the layer.
    With a bit of experimenting I commented out the line that you can see commented out in my code. However, this does something odd. For all images you can see Photoshop put up a busy icon for a few seconds showing that it is process, but only images that Photoshop wants to "Rasterize EPS Format" actually appear on the page as Smart Objects. Trying to place the images that Photoshop doesn't rasterize results in nothing appearing.
    That's my problem. If I uncomment that line in my code then all images that I test with appear on the page - but not as Smart Objects. If I comment out the code then only images that Photoshop wants to rasterize appear - but those that do appear then appear as Smart Objects.
    So that's my goal: to place any image onto a document as a Smart Object just like Photoshop's File:Place menu command does. Any ideas where I'm going wrong?
    - (SPErr)photoshopPlayeventPlace:(char *)cPath
    PIActionDescriptor result = NULL;
    Auto_Desc descriptor;
    Auto_Desc offsetDetails;
    SPErr error = kSPNoError;
    Handle aliasValue = NULL;
    FullPathToAlias(cPath, aliasValue);
    do
    error = sPSActionDescriptor->PutAlias(descriptor.get(), keyNull, aliasValue);
    if (error) break;
    // error = sPSActionDescriptor->PutEnumerated(descriptor.get(), keyFreeTransformCenterState, typeQuadCenterState, enumQCSAverage);
    // if (error) break;
    error = sPSActionDescriptor->PutUnitFloat(offsetDetails.get(), keyHorizontal, unitDistance, 0);
    if (error) break;
    error = sPSActionDescriptor->PutUnitFloat(offsetDetails.get(), keyVertical, unitDistance, 0);
    if (error) break;
    error = sPSActionDescriptor->PutObject(descriptor.get(), keyOffset, classOffset, offsetDetails.get());
    if (error) break;
    error = sPSActionControl->Play(&result, eventPlace, descriptor.get(), plugInDialogSilent);
    if (error) break;
    while (false);
    if (result != NULL) sPSActionDescriptor->Free(result);
    if (aliasValue != NULL) sPSHandle->Dispose(aliasValue);
    return error;

    If you want to go with Batch I would recommend creating an Action of more or less these steps:
    • set the resolution to the same as the background image’s
    • change the image from Background Layer to regular Layer if necessary
    • convert it to a Smart Object
    • add a Drop Shadow Layer Style to the image (do not use Global Angle)
    • place the background image (File > Place …)
    • move it behind the image layer
    • Image > Reveal All
    • make Selection from that layer’s transparency (cmd-click its icon in the Layers Panel) and use Image > Crop
    • select and transform the image layer to fit the intended position
    This would naturally work out best if the images had the same size and proportions.
    For the reflection on the floor duplicate the image, flip it vertically, move it in position and reduce its opacity to maybe 10%.
    Realistically you may have to hide it partially behind the pillows, a Vector Mask would be an option.

Maybe you are looking for

  • Regarding Maxl Script

    Hi Frnds, I have built an ASO cube and to automate it i have wrote the maxl script login 'essadmin' 'essadmin' on 'Mer1-essbaset02'; alter system load application dirsal12; alter application dirsal12 load database dirsal12; alter application dirsal12

  • Converting my double to nice String

    Hi, I am doing a calculation as follows double x = 12102012 + 2400000.5 System.out.println(Double.toString(x)); Now I want it to display the nice readable format of 14502012.5 instead I get this 1.45020125E7 How can I stop this happening?

  • I'm Still Looping - End the looping!!

    I wrote an earlier post, received a good suggestion, and found that it isn't working for me. I created a slideshow that has the following characteristics: 1. An embedded .swf title graphic that appears on the first and last slide. I want it to play o

  • Audio Codec error box when I try to view a clip in Edit Box

    Just started trying to use Pr E 7. Vista I get the media from an external hard drive, drag it to the timeline box. When I try to 'play' it, I get an "Adobe Default Windows Sound Device" box that says: Device:   IDT High Definition Audio CODEC Error C

  • Can't configure device management

    "This computer is already configured to manage network accounts. It cannot be configured again." How do I fix this error? Thanks!