Script to import layers in other file

Hello,
i'm new to this forum but i use a lot of scripting for my workflow... and there is something i need to do  :
i need to import all groups and layers from a local PSD file (that is "my master" with all guidelines from my client : position, spaces, size of product in the picture)
in a other open PSD file to compose the scene,
and i have 10-50 files to do each day.. and i cannot script this part, wich is a problem for me
somebody has the answer  ?
Tanx a lot
Agathe

Supposing the receiving image is open and active and the client file really has everything in just on Group and this Group is the topmost Layer this might help:
// 2014, use it at your own risk;
#target photoshop
if (app.documents.length > 0) {
var myDocument = app.activeDocument;
var aFile = selectFile(false);
if (aFile) {
var theClientFile = app.open(aFile);
var theGroup = theClientFile.layers[0];
theGroup.duplicate(myDocument, ElementPlacement.PLACEATBEGINNING);
theClientFile.close(SaveOptions.DONOTSAVECHANGES)
////// select file //////
function selectFile (multi) {
if (multi == true) {var theString = "please select files"}
else {var theString = "please select one file"};
if ($.os.search(/windows/i) != -1) {var theFiles = File.openDialog (theString, '*.jpg;*.tif;*.psd;*.png', multi)}
else {var theFiles = File.openDialog (theString, getFiles, multi)};
////// filter files  for mac //////
function getFiles (theFile) {
    if (theFile.name.match(/\.(jpg|tif|psd|png)$/i) || theFile.constructor.name == "Folder") {
        return true
return theFiles
To forego the file selection you could drop the lines referring to that and write the file path into (edited)
var theClientFile = app.open(new File(/*insert the proper path here*/));
Edit:
// 2014, use it at your own risk;
#target photoshop
if (app.documents.length > 0) {
var myDocument = app.activeDocument;
var theClientFile = app.open("…");// include the file’s fullName instead of the periods
var theGroup = theClientFile.layers[0];
theGroup.duplicate(myDocument, ElementPlacement.PLACEATBEGINNING);
theClientFile.close(SaveOptions.DONOTSAVECHANGES)

Similar Messages

  • Photoshop Elements 11 Script to Save Layers as Individual Files?

    I am BEYOND frustrated right now. I do not understand why this feature is not built into this program. I am not, nor will I ever be, rich enough to afford any of the Photoshop CS programs and it seems absurd to spend 800+ dollars just for this feature.
    I have spent the last FOUR hours painstakingly creating a 200-frame animation. All I want. Is to turn it into a gif. That's all I want. NO program will import the psd. I downloaded the free trial of Flash CC but, not only is it over complicated, it lags SO BADLY it takes one minute just to perform the import action. After that, it only imports one image from the PSD anyway and won't animate. I found a post here a little bit ago where somebody posted a script that will make PSE11 do what I want it to. They did not however post it in plain text, they posted it in a link. All that link did was redirect me to the main Adobe web page. I am sick. And tired. Of hunting for a solution. I cannot find this script through google no matter what I try. So I am asking here. PLEASE TELL ME I did not waste the last four hours of my life creating a useless animation.

    Wafflemonster234 wrote:
    I found a post here a little bit ago where somebody posted a script that will make PSE11 do what I want it to. They did not however post it in plain text, they posted it in a link. All that link did was redirect me to the main Adobe web page. I am sick. And tired. Of hunting for a solution. I cannot find this script through google no matter what I try. So I am asking here. PLEASE TELL ME I did not waste the last four hours of my life creating a useless animation.
    Not $800+, only $12. The affordable Elements+ has lots of useful scripts, including Exporting Layers to Files.

  • Script to import contacts from CSV file into Address Book

    Hi,
    I am wondering if it would be possible to import contacts from a CSV file into a group in Address Book using applescript, and if so, if anyone is aware of a script that does this or something similar.
    I have a CSV file with three columns 'First Name', 'Last Name' and 'Email Address'.  I would like these to correspond with  'First', 'Last' and (Work) 'Email' in Address Book.
    Ideally the script would also check to see if entries already exist for the people being imported, but this is less crucial.
    Thanks in advance for any assistance,
    Nick

    Hi,
    Test this on a very small csv file (four or five contacts) to see if it works for you. It will not de-duplicate. You don't give the name of the group, so you'll need to replace Name of group in the second line with your group name, enclosed in double quotes.
    --begin script
    set the_people to read (choose file with prompt "Choose your CSV file")
    set the_group to "Name of group"
    set old_tids to AppleScript's text item delimiters
    set AppleScript's text item delimiters to ","
    set par_count to (count paragraphs in the_people)
    repeat with x from 1 to par_count
              set next_par to paragraph x of the_people
              set first_name to text item 1 of next_par
              set last_name to text item 2 of next_par
              set e_mail to text item 3 of next_par
              tell application "Address Book"
                        set nu_person to make new person with properties {first name:first_name, last name:last_name}
      make new email at end of emails of nu_person with properties {label:"Work", value:e_mail}
                        add nu_person to group the_group
      save
              end tell
    end repeat
    set AppleScript's text item delimiters to old_tids
    --end script
    Watch out for bad line breaks in the lines beginning "set nu_person..." and "make new email..."

  • Script to save layers as individual files

    Hi there guys,
    I just got a new job and they require me to save several elements of a PSD file into individual files with their proper name. I'm trying to get a script which would help me with this and also help me be more productive with some other work instead of spending all day doing this. Can someone help me out here with a script that would save each layer as its own file with the layer's name? Does this make sense? Your help is very much appreciated.
    Thanks in advance,
    Dan

    Edit the script in ExtendScript Toolkit as per attached pic.

  • Import Layers? AI CS 1

    Dear Readers:
    I thought that the Place... command would preserve my layers but instead it seems to place all the objects in groups with a clipping path.
    How can I import layers from 4 files into a master file?
    Sincerely,
    rene

    What file format are you trying to place? Do you know the Paste Remembers Layers option that can be enabled in the Layers Palette menu?
    This does not work when placing PDF compatibele files in Illustrator, but works when copying and pasting objects from an Illustrator file to another Illustrator file.

  • How do I export Layers to individual Files?

    In Photoshop CS, there is a script that exports Layers to individual Files.
    Go to File>Scripts>Export Layers to Files.

    Hi Arien,
    If your animation program supports paste open it and select each layer,
    Select>All, Edit>Copy and paste that layer into that program.
    If your animation program doesn't support paste you can paste each layer
    into a New file and save it as a *.png image.
    Alex .,

  • Problem with import tag in xsl files and include in xsd files

    Hello,
    I've been developing an application using JBoss as server. Then, i created an especific path for xsd and another path for xsl files. In both cases, i created a main file that include (xsd) or import (xsl) the other files. My problem is that i have to specify the exactly path where the imported xsl or the included xsd files are, even though they are in the same path as the main file. What i want to know is how i say that the other xsd and xsl files are in the same path that the main file that is importing them?
    here's an example of my import and include declarations:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0"
         xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         <xsl:import href="../server/jboss/deploy/application.ear/pack.jar/xsl/transformer1.xsl"/>
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
              elementFormDefault="qualified">
         <xsd:include schemaLocation="../server/jboss/deploy/application.ear/pack.jar/xsd/schema1.xsd"/>
    thanks for your help

    yes, thats not the value returned of
    URL url = this.getClass().
                        getResource("/xsl//transformer.xsl");the expression i posted is an string i'm using to test.... but i think it's not incorrect, because if the files i'm trying to open are not in the path, he throws the following exception:
    java.io.FileNotFoundException: C:\cpqd\isp\tools\third-party\jboss\server\jbossISP1\deploy\cpqd-ispeng-EngEJB-3.3.0.0.ear\cpqd-ispinv-ServiceEJB.jar\xsl\isp_transformer_manufacturer.xsl
        at org.jboss.net.protocol.file.FileURLConnection.connect(FileURLConnection.java:80)
        at org.jboss.net.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:89)
        at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
        at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
        at org.apache.xalan.processor.ProcessorInclude.parse(ProcessorInclude.java:323)
        at org.apache.xalan.processor.ProcessorInclude.startElement(ProcessorInclude.java:192)
        at org.apache.xalan.processor.StylesheetHandler.startElement(StylesheetHandler.java:668)
        at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
        at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
        at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
        at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
        at org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFactoryImpl.java:972)
        at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:788)
        at br.com.cpqd.oss.isp.service.adapter.FrameworkAdapter.createExternalData(FrameworkAdapter.java:131)
        at br.com.cpqd.oss.isp.service.message.ExternalDataMDBBean.onMessage(ExternalDataMDBBean.java:92)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
        at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:458)
        at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:186)
        at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:62)
        at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
        at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:284)
        at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:150)
        at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:90)
        at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)
        at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
        at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:372)
        at org.jboss.ejb.Container.invoke(Container.java:709)
        at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:928)
        at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1205)
        at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:276)
        at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:904)
        at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:159)
        at org.jboss.mq.SpySession.run(SpySession.java:351)
        at org.jboss.jms.asf.StdServerSession.run0(StdServerSession.java:200)
        at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
        at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:743)
        at java.lang.Thread.run(Thread.java:534)and when the files are in the path, he throws the other exception... thats why i think the problem it's not the URL....

  • Importing layered Illustrator files

    Hello
    I'm on an Intel Power Mac. Premiere 4.1.0
    Importing layered Illustrator files does not work properly. It doesn't provide the pop up option box, to tell you what you want to do with the layers - either bring them in individually, or as a sequence, etc. All it does is simply imports the file with all the elements grouped in one file. Photoshop layered files are OK.
    I have done everything Adobe has suggested. Please see following -
    1. Done a disk permissions check, with disk utility
    2. Deleted all Premiere preference files.
    3) Uninstalled software
    4) Did a cleanup script (provided by adobe)
    5) Reinstalled software - to Premiere 4.0 (tried this version and still no good).
    6) Uninstalled and reinstalled, clean script, just to make sure (still no good)
    7) Upgraded again to premiere 4.1.0 (still no good)
    Has anyone had this problem before?
    Many thanks
    Danny

    The problem is that the Help file, and any marketing literature for that matter, is not a good indication of what the software actually does or does not do. Danny, I realize that you want to torch Adobe HQ over this issue, but the fact of the matter is that mistakes happen. And I can guarantee you 100% that when you installed the software and accepted the EULA, you acknowledged that those mistakes do happen, whether they are software bugs or erroneously-advertised features, and you absolve Adobe of any liability. I'm certainly not suggesting complacency--feel free to call the BBB or organize a class-action lawsuit or get the pitchfork-wielding mob to storm the castle--but I think it's a waste of time and energy. Adobe's not going to cop to any bug or missing feature--end of story. And the folks you're talking to at customer support really have, at most, a rudimentary understanding of the software. If you want to be active and proactive, file a feature request/bug report. It's not a guarantee of satisfaction, but it's more likely to bring you to that point than any of the above options.
    Not to belabor the point, but the way the Help file is written...
    "...you can import a layered Photoshop or Illustrator file as a
    sequence, enabling you to set up graphics in these applications and
    then import them into an Adobe Premiere Pro project."
    ...suggests that both layered Photoshop files and Illustrator files will be recognized as sequences when imported. No, it does not specifically say "layered Illustrator file," but from the context of "as a sequence" implies that the layers would be recognized and imported thusly. At present, all Illustrator files, whether they are layered or not, are flattened on import. I would be inclined to believe that this is not so much a bug, as it is a feature that was planned but not implemented, and somewhere along the line the memo between the programming group and the marketing group to this effect was misplaced. Whichever it is, it doesn't matter: this is not a workflow option.
    Here are a couple of legitimate workflow options:
    Export your AI file (don't use Save As, use Export) to a PSD file. You can maintain the layers as well as text editability by doing this, and the layered PSD will subsequently import as a sequence into Premiere Pro.
    Stop using Illustrator for video graphics. Photoshop really is better suited for video graphics, in my view, than Illustrator is. Illustrator is fine for building logos and such, and even doing some text layout that's not possible or at least not easily done in Photoshop, but vector artwork is a poor match for the world of video. Your vector artwork (whether its sourced from Illustrator, Photoshop, or wherever else) is automatically rasterized when imported into Premiere, so I feel it's better to start in Photoshop where you can control this to a greater extent than you can in Illustrator.
    As I've mentioned previously, use After Effects to build a comp from your layered AI file, and either render a movie out for use in Premiere, or use Dynamic Link to keep it live between AE and PPro.

  • Add layers from other psd file and retain text layers (Batch processing)

    I want to batch process a large number of portraits adding text info from the filename (year_name_number.jpg) to existing text layers. I want to make a template psd file containg the correct labeled text layers formatted and adjusted (With bleding effects and more) How can i add layers from an other psd file to the active document and retaining the text layers editable. The place command in PS5 adds the file as a smart object, no use.
    Any ideas?
    I tried the combined action/script way, but no joy so far. Right now i am making the text layers with a action, then calling the script from the action. It works but its difficult to make different templates from adjusting a action.
    The code i am using now (in combination with a action creating the 3 text layers and other grapchical elements)
    var docRef = activeDocument;
    // strip the extension off
    var fileNameNoExtension = docRef.name;
    fileNameNoExtension = fileNameNoExtension.split( "_" );
    if ( fileNameNoExtension.length > 1 ) {
                    fileNameNoExtension.length--;
    fileNameNoExtension = fileNameNoExtension.join("_");
    var myString = fileNameNoExtension;
    var mySplitResult = myString.split("_");
    var textLayer = docReflayers['Year']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T1 = textLayer.textItem;
    T1.contents = mySplitResult[0]
    var textLayer = docRef.layers['Name']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T2 = textLayer.textItem;
    T2.contents = mySplitResult[1]
    var textLayer = docRef.layers['Number']; // define the existing text layer to a var
    docRef.activeLayer = textLayer;
    textLayer.kind = LayerKind.TEXT;
    var T3 = textLayer.textItem;
    T3.contents = mySplitResult[2]
    Thanks
    Eivind

    norway_photo wrote:
    Here is my intended workflow:
    - A set of same size portraits labeled "year_name_number.jpg"
    - A template.psd os same size with graphical elements and text layers (named "year", "name" and "number")
    - A script or action copy/pasting og adding all layers from the template.psd file to the open portrait file, retaining text layers editable.
    - A script (The one i have working) changing the text layers added from the template to text from the filename.
    - A action saving this as a PDF ready for print.
    This way i can process a large number of portraits, add names and other information and save it as a file ready for print.
    I can image it is much easier to edit a template than writing a script or an action creating all the graphical elements.
    And even better, to change this template for different customers/departments/logos.
    Basically i need a way to add layers to an open file using a batch file or script.
    Eivind
    OK I understand what your trying to do and now I do not agree with your conclusion you made in you first append about place being no good for you.  Its is I think a perfect solution for you. I feel you need to address the process from a new angle.
    I am very familiar with templates I use them all the time for collages which I populate with an actions.  However I do not batch this process and my process is interactive.  If you look at what your trying to do from the angle of creating a collage.  You will see what you are trying to do is automate the population of a single image collage using a single template in a batch process.  An example of one of my single image collage populated by one of my actions that has been saved as a jpeg image file.  My actions are played in Photoshop with no document opened.  After my action is play there is a single collage document in Photoshop that contains layers that can be tweaked all text is in text layers the can be edited.
    If I wanted to automate the batch population of a single collage template I think all I would need to know is three thing.
    1.) The location of the input images
    2.) The full Path of the PSD template file.
    3.) The location to store the output  file
    Looking at some of the recent threads in this forum I could almost cut and past the script you want to put  together.  There was a recent thread that had javascript code to process files in a folder and process only a list of file types.   There also was a thread that had a place function in it to place images into the current document or create a new document to place the image into.  The image was read from the web using a URL.  This thread has code to change a text layer.  At first I though you may need to open these image file to get at its meta-data to get the Portrait image Exif creation data.  But see all you need is the Filename for it has the data you want the year and name.  So the function that get the image files from the folder will give you that. The   Script needs to Open the Template PSD file and retrieve the prototype text layers text content  then the scrip needs a loop that get the next image file to be processed from the folder get filename function. In the loop the image files are place into the open template above a place holder layer like the Background layer. Then using the prototype text contents and the filename are used  create the new content for the text layer and then change the text layers content to it.  Follow that up with a save as for the output file.  Once the output file is saved delete the placed smart object layer.  When this loop ends the script will close the document with no save and end. As for the three inputs you need  the script could either have a dialog like the images processor or simply prompt you for the folders and template file.

  • Importing Multi-Layered Photoshop CS2 files...

    Hello again everyone. I trust you are all well.
    I am currently constructing some tutorials for my Video Editing class and I am trying to demonstrate how to import and use Multi-layered Photoshop CS2 files inside Final Cut Express 2.0.3.
    Here is the problem:
    My iBook is running Final Cut Express 2.0.3 but does not have Adobe Photoshop CS2 on it. My DELL PC is running Adobe Photoshop CS2 and I am creating my PSD's on that and then transfering those PSD's across to the iBook with either my USB stick or my iPod.
    Now according to the Final Cut Express 2.0.3 Help file, "When you import a layered Photoshop File into Final Cut Express, the file becomes a sequence in your project".
    However, when I import my PSD, that was created on my DELL in Photoshop CS2, into Final Cut Express 2.0.3, it does not import it as a sequence, but as a flattened still image.
    Is this because I need to have Photoshop CS2 installed on my iBook for the PSD to be imported correctly as a sequence, retaining the layers, or is there a compatability issue with creating PSD's on a PC and then trying to import them into Final Cut Express 2.0.3?
    Regards,
    Justin Pamenter
    Multimedia Teacher

    Thanks for your quick reply Tom!
    I had a feeling this might be the case after I did some more testing with Photoshop files created on a MAC. If I resave those PC Photoshop files on a Mac in Photoshop, they import correctly as a sequence into Final Cut Express.
    Thanks again for the advice!
    Regards,
    Justin Pamenter

  • A problem with importing layered PSD file into Flash

    Hi.
    There's a problem with importing layered PSD file into Flash.
    If I import a layered PSD file, some part the color of the lower layer is shown at the edge of objects or shadows. Instead, if I crop each layers first and import them, there's no problem.
    If the higher layer has brush or transparent effects, it becomes worse.
    Any help with this problem?
    Thanks.

    How was the original art created? Was the original RGB or CMYK? What is the resolution of the Photoshop file? Flash only works well with RGB and 72 pixel per inch resolution. If your original art is not set this way, then Flash will attempt to convert it as it imports it. Flash uses the sRGB color space. You'll get the best color translation if your Photoshop file is using this color preference.

  • Premiere Pro CC 7.2.1 won't import layers of an AI file

    I know in the past Premiere Pro wouldn't import a layered AI file, but is that still the case? I can get a layered PSD file to import layers as normal. When I try to import a layered AI file, I don't get the "Import Layered File" dialog as I do with the PSD files; I get a flattened image. Is this a setting I've overlooked or is this STILL not a feature?
    Thanks for your help!

    No layered import for AI files.
    But when imported in Premiere and you want to change something hit Edit Original and the file will open in layers in Illustrator.

  • Importing layered photoshop files

    I'm trying to import a layered photoshop file ( .psd and .tif - neither works ). I was led to believe that this would import with its layers intact in order to make an overlay menu but that doesn't happen. All of the layers do import however as a single layered file. I'm new to DVDSP so probably doing something really stupid. Cheers Doug

    Actually, go ahead and use layered menus if you feel like it - just keep in mind that DVDSP is creating in the background a separate menu background for each button state, and so this type of menu usually behaves a bit sluggishly.
    Some tips for working with layered psds -
    They will always import as a single file. If you can see the layers when you apply it to a menu, you have done it right. Sometimes if the bit depth or color mode for the psd is incompatible, a layered file will appear to import as a flat image without layers.
    Resize the menu to your video frame size and set the pixel aspect ratio in photoshop.
    Save a version of your original file in which you:
    -combine any layers that do not need to be separate
    -flatten or rasterize any text layers and layer effects, as these will not be supported in DVDSP
    -get rid of all layer sets or groups
    Make sure you are creating a layered menu in DVDSP - it's a separate command from "add menu". You'll see the photoshop layers in the inspector when you add the psd to the menu, which can then be turned on and off for each button's selection state. Even a simple menu can seem complex in this window, but play with it enough and you'll figure it out.

  • Importing layered .psd's - DSP 4.0 thinks its a quicktime single layer file

    I'm trying to import a layered psd, menu buttons for a custom menu. studio pro 4.0 doesn't recognize my photoshop CS2 files and imports them as quicktime files, which of course doesn't import the layers. The manuals says DSP wants an independent 24bit format for each layer. Problem is Photoshop doesn't have a 24bit setting, only 8, 16 and 32. I'm stumped. How do I get a layered psd to be recognized by studio pro?
    thanks,
    George
    PowerMac G4   Mac OS X (10.4.4)  

    Do you get the PSD into the assets, and then fail to place it as a layered background? If that's the case are you dragging it into place, or choosing the layers that should show for each button combination? Also, was it a layered menu you made?
    If it doesn't get into assets in the first place, have you used any advanced folder arrangements in the Photoshop document? Can you save out as Photoshop 6 compatible, or something like that?
    Don't worry about it being 32 bit when 24 bit was asked for, it should still work. But perhaps make sure that the Mode in Photoshop was RGB, and not CMYK.

  • Replacing Imported Layered Photoshop Files

    From the file browser (or the Media Tab) in Motion (2.0.1) you can easily replace an object in a layer by dragging and dropping a new file onto that object. This is handy if you modified an image but want to apply the same animation to it. So here's my question:
    I have an imported layered photoshop logo in my project and I want to replace some of those layers with a modified version of that logo (the animation is staying the same so I'm trying to avoid copying and pasting hundreds of keyframes to my altered layers). How can I replace the individual layers?
    I tried importing a single layer from the new PS file as a test but in the Media Tab, Motion still references the entire photoshop file so when I try to replace the corrosponding layer it just inserts the entire flattened PS file.
    What say you?
      Mac OS X (10.4.8)   Motion Version 2.0.1

    hi,
    welcome to the forums.
    i have found that if i update the photoshop file then the imported layers in Motion update as well. Are you not seeing this?
    Could you not save the layer out of the photoshop file as a separate file and import that?
    regards
    adam

Maybe you are looking for

  • Can clips be merged after they've been split?

    So I have a bunch of small clips. Can I merge them into one larger clip so I have fewer little things to work with? (i.e. Instead of five one-minute clips, I want one five-minute clip) All I can find is information on splitting clips, but nothing abo

  • Rich black needs to be designed?

    In ID (CS5) preferences, it offers an option of "Accurate blacks" or "Rich blacks".  As discussed before, "Accurate blacks" are 100%K and "Rich blacks" are a combination of CMYK.  Am I assuming correctly that if you have designed a black box in InDes

  • Iphone 6 photo - albums and collections

    A few questions about photos on the new iPhone 6.  First, under the collections, what is the perimeters set to organize the photos automatically?   Some of the photos in "collections" have a two week span, then the next section is maybe a 3 mo nth sp

  • Can I install Adobe Acrobat XI Standard on a Surface Pro 3?  (Not the subscription version)

    Can I install Adobe Acrobat XI Standard on a Surface Pro 3?  (Not the subscription version)

  • Form and tracking help

    I would like to put a form up that the people in my office can open place a bid on an item (along with phone number , email which item number and how many if applicable) and then track the information so I can see who the highest bidder is. Of course