Trying to edit psd file and it adds another layer

I have a psd file that was created to use as a template (it is all text).  When I try to edit it, it won't let me, instead another layer is added to the file, instead of allowing me to edit the layer that I am in.......what am I missing???

If it's been rasterized, you will not be able to edit it.  You'll have to re-create the text layer.  The trouble is that since it was a template, you may not have the fonts that were used to originally create the template.

Similar Messages

  • I am trying to edit VOB files and Photoshop cs6 ext. won't accept them.

    I am trying to edit some VOB files from my daughter's wedding CD.  But Photoshop won't accept that format.  I read that I could just change the extension to AVI  and drag them in.  I did that and it opened  them but the video and audio didn't sync.  The size was distorted but I figured out that I could change the aspect ratio to widescreen from the view menu which looks pretty normal.  But I see black lines on the sides of the video.   What do I have to do to be able to edit the video??
    Thanks

    VOBs are multiplexed MPEG-2 DVD files and they adhere therefore to the DVD spec - 720x576 pixels, 1.43 pixel aspect ratio. Anyway, you are wasting your time. The files will need to be converted in an external tool to be usable in PS and even then the question is how much sense it makes to edit video in Photoshop, especialyl when it contains audio. Premiere or other edit programs would be much more adequate.
    Mylenium

  • How to read from one file and write into another file?

    Hi,
    I am trying to read a File and write into another file.This is the code that i am using.But what happens is last line is only getting written..How to resolve this.the code is as follows,
    public String get() {
         FileReader fr;
         try {
              fr = new FileReader(f);
              String str;
              BufferedReader br = new BufferedReader(fr);
              try {
                   while((str= br.readLine())!=null){
                   generate=str;     
              } catch (IOException e1) {
                   e1.printStackTrace();
              } }catch (FileNotFoundException e) {
                   e.printStackTrace();
         return generate;
    where generate is a string declared globally.
    how to go about it?
    Thanks for your reply in advance

    If you want to copy files as fast as possible, without processing them (as the DOS "copy" or the Unix "cp" command), you can try the java.nio.channels package.
    import java.nio.*;
    import java.nio.channels.*;
    import java.io.*;
    import java.util.*;
    import java.text.*;
    class Kopy {
         * @param args [0] = source filename
         *        args [1] = destination filename
        public static void main(String[] args) throws Exception {
            if (args.length != 2) {
                System.err.println ("Syntax: java -cp . Kopy source destination");
                System.exit(1);
            File in = new File(args[0]);
            long fileLength = in.length();
            long t = System.currentTimeMillis();
            FileInputStream fis = new FileInputStream (in);
            FileOutputStream fos = new FileOutputStream (args[1]);
            FileChannel fci = fis.getChannel();
            FileChannel fco = fos.getChannel();
            fco.transferFrom(fci, 0, fileLength);
            fis.close();
            fos.close();
            t = System.currentTimeMillis() - t;
            NumberFormat nf = new DecimalFormat("#,##0.00");
            System.out.print (nf.format(fileLength/1024.0) + "kB copied");
            if (t > 0) {
                System.out.println (" in " + t + "ms: " + nf.format(fileLength / 1.024 / t) + " kB/s");
    }

  • 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.

  • How to Edit PSD Files In Flash Template

    Hi Everyone,
    I am new to flash and I am trying to create my first flash site using a template that I have downloaded. I can edit the first page fine, but when I click the "about us" or any other section, the standard template text, Which isn't even in english, appears. I believe that these are psd files, and I have tried to edit them, saved and replaced file on my computer, but still I get the same unchanged text on this site when I preview. Could someone please tell me how to edit and replace these files within the flash movie?

    Instance names are the reference names that you give to the individual items on the stage. Only movieClip and button symbols can have instance names.
    When you import a photoshop file to Flash you will get individual bitmap objects on the stage and in a folder in the movie's Library. You will need to select each item, one at a time, on the stage and convert each one to a symbol. When you make that conversion the name that you give to that new movieClip or button is the name that you will see in the Library.
    When you select that new symbol on the stage, look at the Properties window. You will now see a space at the top where you can give that item an instance name. The instance name is what you will use in Actionscript to control that object on the stage.
    When you look in the movie's Library, you will see the original bitmap and the symbol that you created that contains that bitmap.
    Does that help?

  • How to edit PSD files on Photoshop Creative Cloud

    Hi there,
    I am new to Creative Cloud and just downloaded the Photoshop App to my desktop. However, I can't seem to find the options where I can edit my psd files. Can someone please help me? I would like to know how I can start editing PSD files on the Photoshop Creative Cloud App.
    Thank you so much!

    HI Resumeboston16,
    Which version of Photoshop are you using? Photoshop CC?
    You'll probably still want to save you PSD files locally to the computers hard drive. You can upload them to the Creative Cloud files page here https://creative.adobe.com/files through the browser.
    Then you could download it on another computer to work on it there.
    -Dave

  • I cant set my ps cc 2014 as a default program to open psd files and alike. What will I do?

    I cant set my ps cc 2014 as a default program to open psd files and alike. What will I do?

    What will I do?
    You could try giving pertinent information. (edited)
    http://forums.adobe.com/docs/DOC-2325

  • Trying to edit a file in Acrobat, I select the image, right click-edit image. Opens in Photoshop, I make correction, but file updates back in Acrobat at a lower resolution

    Trying to edit a file in Acrobat, I select the image, right click-edit image. Opens in Photoshop, I make correction, but file updates back in Acrobat at a lower resolution

    What was the resolution before and after?

  • Double-click On PSD File And Timeline Disappears!?

    Have dropped a .psd file on track V2 and want to resize it in Motion window.
    So double-click it but timeline seems to vanish and a "negative" clip or something appears in the middle left of where timeline should be.
    How do I make .psd behave like a normal clip and prevent the timeline from vanishing?
    Incidentally the .psd has a coloured shape with a transparent background.
    Message was edited by: Ian R. Brown

    Hi Ian,
    The PSD opens in its own sequence in the timeline to let you change the values of the various layers that it might be composed of. If you make a PNG, it will not save the layers or let you edit their values in FCE.
    If you want to change the motion values of the whole PSD file and not change them individually for the separate layers, select the PSD in your original timeline and click Enter to open it in the viewer.

  • As administrator, I cannot edit certain files unless I add read/write/etc. for the Users group.

    I'm administering a Subversion server running on Windows Server 2008 R2.  When I need to add access to SVN repositories, I need to edit a svnaccess.txt file.  This file sits under C:\Program Files(x86)\CollabNet\Subversion Server.  When I
    attempt to edit the file, though, I cannot save it unless I save it to a new file.
    My account is part of the local administrators group.  All of the folders and subfolders in the path have Full Control enabled for Administrators.  The file itself also has Full Control enabled for Administrators.  Yet, the only way I can
    edit this file is to add Modify and Write permissions to the local Users group even though my account is only part of the local administrators group.
    What's odd too, is that if I can edit these permissions I must have the appropriate administrator privileges.
    I searched for this a while back and recall seeing a hotfix for this as it was a known bug in Windows Server 2008, however, I cannot for the life of me find this link anymore nor do I see a fix like this on the hotfix spreadsheet.  I need to locate
    the hotfix that corrects this to provide to our system admins.  For some reason, they will only install hotfixes if a problem is identified.
    If anyone knows of the hotfix that corrects this issue, please let me know! :)
    Thank you!

    Hi,
    As you said, if a user account belong to local Administrators account, when only Administrators group has permission on a folder, all admins except Administrator account will not have permission to access it.
    This is caused by UAC. All accounts in local Administrators group are actually working as standard accounts. When an Administrator action need to be performed, a prompt will occurs for permission to promote to admin permission. As only Administartors group
    has permission on a folder and the account we are using is working like a standard account, we will be denied from accessing.
    A workaround is to create a new group for all admins and give the group enough permission for accessing the target folder.
    Or you could run all accounts in Administartors group in Admin mode. See this article:
    UAC Group Policy Settings and Registry Key Settings
    http://technet.microsoft.com/en-us/library/dd835564(WS.10).aspx
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Captivate edit psd file greyed out!

    I have the entire CS 5.5 suite, Captivate, Photoshop, Bridge, etc.  In Captivate, <Edit PSD File> is greyed out.  What do I have to do to get Captivate to recognize the other tools in the suite so that I may edit source while in Captivate?  Thanks for your response.

    Hi there
    I agree with what you are saying. Unfortunately, Adobe's policies are unlikely to change UNLESS they hear from enough unhappy customers. One way to voice your displeasure is to file a Wish Form/Bug Report. You could file a Bug Report stating that you feel it's a bug that the products don't easily integrate. (link to the form is in my sig)
    You do have an option to right-click objects in the library and open them using any editor you like. Perhaps that helps?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • I am trying to Edit a PDF and it keeps telling me to buy Acrobat Pro but I already have it and am paid up to 15 May 2015

    I am trying to Edit a PDF and it keeps telling me to buy Acrobat Pro but I already have it and am paid up to 15 May 2015

    Hey christopherc53009480,
    Could you please let me know what version of Acrobat you have purchased.
    Also, please share the screenshot of the message that pops on your screen as I need to analyze the exact issue.
    Hope to hear from you.
    Regards,
    Anubha

  • ITunes Match has stopped uploading - every file errors and says waiting - I have tried to delete the files and use other formats etc.  I have had the service since Day 1 and NEVER had an issue.  It didn't start until the Delete from Cloud switch to Hide

    iTunes Match has stopped uploading - every file errors and says waiting - I have tried to delete the files and use other formats etc.  I have had the service since Day 1 and NEVER had an issue.  It didn't start until the Delete from Cloud switch to Hide from cloud - the files that do not upload show grayed out on my other devices.

    Have you confirmed that you successfull purged iTunes Match by also looking on an iOS device?  If so, keep in mind that Apple's servers may be experiencing a heavy load right now.  They just added about 19 countries to the service and I've read a few accounts this morning that suggests all's not running perfectly right now.

  • In Bridge when I R click on psd file and tell it to open in Photoshop it says can't find Photoshop.exe. Photoshop is running at the time. How do I teach it where Photshop.exe is?

    In Bridge when I R click on psd file and tell it to open in Photoshop it says can't find Photoshop.exe. Photoshop is running at the time. How do I teach it where Photshop.exe is?

    I have sort of the exact same problem. Extremely far away from user friendly
    I have an second issue as well: When I hook off all-day it comes up with an 8 hour event!
    And then if I put in a late start hour it pushes end time to next day due to the 8 hour event suggestion.
    All in all this gives a lot of changes just to enter an event.
    Command N
    I learnt from your input to use this fuction. At least that comes up with a one hour event as default.

  • I am trying to open my files and I get the message that the file is invalid.  The index sml file is missing

    I am trying to open my files and get a message saying that the file is invalid.  The index xml file is missong

    Tell us the whole Story in detail about what App (if any), version, any changes you have made recently and Importantly, the exact message - verbatim - a screenshot of the entire display would be very helpful - ÇÇÇ

Maybe you are looking for

  • How to enable "On Exit" property for a Quiz Question?

    Maybe there is a better way of doing this, but I'm making a quick jeopardy game using Captivate 8, and I'm simply trying to get the board buttons/shapes to disappear after they have been clicked. I was using advanced actions where the first action wo

  • Internal emails not being received.

    Hi, We have come across an issue in our office with our blackberrys. If we send emails from our Blackberrys to another internal email address it arrives on our computers in our outlook but not on the blackberry. It doesn't fail or not sent it goes as

  • Problem migrating to 5.7

    I have an activity that call ClientFile Method in a 5.5 project. I exported and imported in a ALBPM 5.7, and when excecut it obtain this error. Are there any way to migrate this component? Thanks, Hugo. HTTP Status 404 - /workspace/servlet/webClientF

  • Exported media cannot be played by Windows  MEdia Player

    Hi, I have loaded in a CS3 project into Adobe MEdia Encoder (I would have eimported it into Adobe CS4 first but it doesn't work- it just loads the project and when it's done, nothing appears). I selected the "Sequence 1" of the project and started th

  • IMac doesn't deliver sound via BOSE active speakers. Why?

    Tried to connect my imac with the BOSE Companion 2 active Speakers, as i always did before. Since i moved here i was too lazy to set it up again. Now i wanted to but theres no sound. Boxes have energy, the two are connected to each other and the cinc