Copy a text layer to another image in the same location

I am trying to find a way to copy a text layer in one image to another image of the same size so that the text layer is in the exact same location.
Basically I have two images for a rollover button for a website. What is the easiest way to copy a text layer to the other image so that it will be in the exact same location to create the rollover effect?
Thanks!
Nick

Right click on the layer, Duplicate Layer, set destination to the other image file in the dropdown.

Similar Messages

  • How can i copy my itunes library to another computer in the same household?

    How can I copy my itunes library to another computer in the same houehold?

    If you just want to share the iTunes library with other computers in your house: http://support.apple.com/kb/ht3819
    If you want to move the iTunes library:
    For Windows: http://support.apple.com/kb/ht1364
    For Mac: http://support.apple.com/kb/ht1449

  • Positioning an image in the same location on different projects? (CS5)

    Hello,
    Is there a way to position an image in the same location on multiple projects aside from trying to use the rulers? I can never get them to match up evenly. They're close, but there has to be a way to make it match perfectly.

    If you have a few to do, you can create an action so it will speed up the process.
    To create this action.
    (With the document open)
    Start a new recording
    File - Place - select your logo (tiff, png, jpg etc)
    This will put the logo into the center of your document, press enter to comfirm the selection.
    Select - All (or ctrl/a)
    Layer - Align Layers to Selection - Top Edges (or where ever you want)
    Layer - Align Layers to Selection - Left Edges (or where ever you want)
    Your logo is now in the top left of your document
    Select the Move tool (v)
    Now to put it exactly where you want use the cursor keys
    One press of the cursor key = 1 pixel
    Shift and cursor key = 10 pixels
    Once you have the logo where you want ctrl/d to deselect then stop the recording.

  • Copy a shape layer to another image?

    The only way I've found to copy a shape layer from one image to another is to have both images showing in the Editing pane and to drag and drop the shape layer from the Layers panel onto the other image.
    That's a rather tedious process.  Is there another way to do it, hopefully a keyboard combo?
    Ken

    R_Kelly wrote:
    If your using tabs you should be able to drag the shape from the document area using the move tool to the other tab and drop into the document.
    Excellent!  That works much quicker than what I was doing, and is even faster than the "Duplicate Layer" method.  Thanks.
    Ken

  • How to copy one account preferences into another account on the same mac?

    I would like to open a new account (on the same mac) but would like to copy some preferences including software from the existing account. How can I do that?
    Thanks

    To copy files from Account A to Account B:
    1. Log in as A.
    2. Find the files you wish to copy.
    3. Move them to /Users/A/Public. Don't move your actual Documents, Pictures, Library etc folders. Just move their contents.
    4. Log in as B.
    5. Navigate with Finder to /Users/A/Public.
    6. Drag the files to the desktop to make new copies of them.
    7. Put the files away in the appropriate places in B's home folder.
    8. Log back in as A and move the files in /Users/A/Public back to their original locations.

  • Copy and paste a Text-Layer to another picture - Its not a Textlayer more

    Hello,
    i tried to copy a text-layer from one psd-Picture and i want to paste it into  other pictures:
    var dok_textebene = app.documents.getByName ("text.psd");
    dok_textebene.artLayers["name of the textlayer"] .copy() ;           
    //chage to a other picture
    app.activeDocument =  otherpictureRef ;
    app.activeDocument.paste ();
    //  this is ok, i could copy & paste the layer
    // But it is not any more a text-layer
    //then i tried this code to change the state of the layer to a text-layer
    app.activeDocument.activeLayer.kind = LayerKind.TEXT ;
    But this was not aible, i get an error.
    Does anybody know how i could copy and paste a text-layer ?
    Thanks
    realbutsch

    It might be better to duplicate the text IE:
    var currentDoc = app.activeDocument;
    var dok_textebene = app.documents.getByName ("text.psd");
    app.activeDocument = dok_textebene;
    activeDocument.activeLayer = activeDocument.artLayers.getByName('name of the textlayer');
    activeDocument.activeLayer.duplicate(currentDoc);

  • I'm trying to copy a text layer style, but it's grayed out

    All text layers in my file is the same problem. The copy text layer is not available. But I can paste a layer style. I tried on another PSD and same thing. I reset my preferances folder and still no luck. This has happened to me once before, and I can't for the life of me remember what I needed to do to fix it. Anyone know the problem?
    Thanks
    PS CS5
    Win7 64
    Message was edited by: f8saysso

    Solved it myself and am posting the 'solution' for others that are not frequent users of PS..
    I was trying to copy the font and color of my text to a bunch of other text layers. Come to find out that it's not possible (as far as I know) without doing the formatting using blending options. Instead, I used the regular text formatting tools. All's good now.

  • Copy one text file to another text file and delete last line

    Hi all wonder if someone can help, i want to be able to copy one text file to another text file and remove the last line of the first text file. So currently i have this method:
    Writer output = null;
             File file = new File("playerData.xml");
             try {
                   output = new BufferedWriter(new FileWriter(file, true));
                   output.write("\t" + "<player>" + "\n");
                   output.write("\t" + "\t" + "<playerName>" + playerName + "</playerName>" + "\n");
                   output.write("\t" + "\t" + "<playerScore>" + pointCount + "</playerScore>" + "\n");
                   output.write("\t" + "\t" + "<playerTime>" + minutes + " minutes " + seconds + " seconds" + "</playerTime>" + "\n");
                   output.write("\t" + "</player>" + "\n");
                   output.write("</indianaTuxPlayer>" + "\n");
                  output.close();
                  System.out.println("Player data saved!");
             catch (IOException e) {
                   e.printStackTrace();
              }However each time the method is run i get the "</indianaTuxPlayer>" line repeated, now when i come to read this in as a java file i get errors becuase its not well formed. So my idea is to copy the original file, remove the last line of that file, so the </indianaTuxPlayer> line and then add this to a new file with the next data saved in it. So i would end up with something like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <indianaTuxPlayers>
         <player>
              <playerName>Default Player</playerName>
              <playerScore>0</playerScore>
              <playerTime>null minutes null seconds</playerTime>
         </player>
         <player>
              <playerName>Default Player</playerName>
              <playerScore>0</playerScore>
              <playerTime>null minutes null seconds</playerTime>
         </player>
         <player>
              <playerName>Default Player</playerName>
              <playerScore>0</playerScore>
              <playerTime>null minutes null seconds</playerTime>
         </player>
    </indianaTuxPlayers>
    However after all day searching the internet and trying ways, i have been unable to get anything working, could anyone give me a hand please?

    I would go the XML route too, but for fun, open a file as a BufferedWriter and do this:
    void copyAllButLastLine(File src, BufferedWriter tgt) throws IOException {
        BufferedReader in = new BufferedReader(new FileReader(src));
        try {
            String previous= in.readLine();
            for (String current = null; (current = in.readLine()) != null; previous=current) {
                tgt.write(previous);
                tgt.newLine();
        } finally {
            in.close();
    }

  • By saving for web text-layer becomes a image in HTML what is wrong?

    By saving for web text-layer becomes a image in HTML what is wrong? In this way I can not use CSS in the editor.

    Right click on the layer, Duplicate Layer, set destination to the other image file in the dropdown.

  • Drag Adjustment Layer to Another Image

    How can I drag a layer onto another image in PSE4?
    Scott Kelby says "drag-and-drop Levels Layer onto one of your other open photos."
    I can only see one image at a time in Standard Edit.
    I opened 3 photos and saw them cascade as they opened; but then the last one stayed on top.
    I can see the others in the Photo Bin only.
    I can select any one to be in main window, but not all 3.
    How can I arrange them in Cascade mode?

    DUH!
    I found the setting under Window, Images, Cascade......

  • How do I paste an image onto a layer of another image

    How do I paste an image onto a layer of another image?

    Yep,   Coming slowly
    Have the resolutions the same and used the proportion to see the 
    battery.   How do I save the transformation without saving the entire 
    file.
    Thanks for your help.

  • How can I copy a part of the picture and paste this piece on top of another part of the same picture? ta

    How can I copy a part of the picture and paste this piece on top of another part of the same picture? ta

    select the section you want to copy (marquee tool or lasso tool) and either go to edit copy or use control c create a new layer in layers (top menu bar) or Control shift N and paste using control V;  or edit > paste.

  • Mountain Lion: Copying mailbox from one user to another user on the same mac

    When I bought the mac I had only one email address.  Since then I have accumulated 3 more addresses. I created another User on the same MAC to seperate the personal emails from the 3 new email addresses, that I use for business. 
    There are some mailboxes from the 1st account that has business information in them that I want to move to the 2nd User account (with the 3 e-mail addresses).  I though that I could save them in the dropbox and then save them into the 2nd User accounts like I did with the documents and spreadsheets, but this does not work.  
    I really need to separate the Family Personal email information from the Busines Information and I do not want to just send lots and lots of emails to the accounts to get them there. 
    I am not using Cloud at the moment because it created some syncing issues.  Because the 1st User Account and email account is synced with an iPad and iPhone that my wife uses with an Apple ID.  The 2nd User (and 3 mail addresses) are synced with my iPhone and a separate Apple ID.  We have separate ID's because she did not want my personal & business contacts seeping into the family email accounts
    I know that this is long, but I wanted to provide as much information as possible, so that I can resolve this.
    Thanks in Advance

    I spent quite a few hours after this was posted trying to figure it out and I did.
    Select Mailbox > Export Mailbox.  This asks you a location to export the mailboxes to.  It just uploads the exported mailboxes into Dropbox. 
    Then change the User that I want to import the mailboxes into. Select Import and select the location of where you placed the folder in Dropbox. This then imports the mailbox into a folder called Import. You then drag and drop the copied mailboxes from the Import folder to the folder in the structure you have.  If you decide to delete the folders from the import folder list, do this.  You can also delete the copied folders from Dropbox if you wish.
    Took a while, but I got there and I'm happy now....

  • How can I copy an audio effect from a clip and paste it to another clip in the same timiline...With FCPro 7 it was all so fast........

    how can I copy an audio effect from a clip and paste it to another clip in the same timiline...With FCPro 7 it was all so fast........

    Tom Wolsky wrote:
    The advantage goes to FCP7 if you allow that it can copy and paste filters, audio and video, transformations, and other attributes separately.
    You can do that in FCPX too, as all the things you cited are listed separately in the inspector.
    Here's a little gotcha. Let's say you've color corrected a few clips and you've applied an effect to one and want to paste it the other clips. You switch off color correction and copy the clip. You select the other clips and paste effects. What do you think happens? The effect is applied, but the color correction is applied as well, only it's switched off as it was in the first clip, so all the color correction on the other clips is lost. Fun, eh?
    I'll try to replicate your gotcha - but no, that doesn't sound like fun at all!

  • How to upload a file which may contain text as well as image to the server using windows phone 8 application ?

    How to upload a file which may contain text as well as image  to the server using windows phone 8 application ?

    You're going to need to give way more detail about the situation before we can help.

Maybe you are looking for

  • Can I install Mac OS 10.4.7 CD's meant for an imac intel chip (Jan 2007)??

    Can I install Mac OS 10.4.7 CD's that came from an imac intel chip (Jan 2007) ONTO an ibook power pc G3? The ibook only has a CD drive and I believe the OS installs are CD's not DVD's as there are 2 of them. The ibook currently is running OS 10.3.9 w

  • Prozedureinsprungpunkt.......aif_ogl.dll

    Hallo! Habe seit gestern das Problem, dass beim Starten von CS6 eine Fehlermeldung erscheint. Grafikkartentreiber ist aktuell. Systeminformation: Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64 Betriebssystem: Windows 7 64

  • Can't get panels and preferences to save with MacBook Pro

    I can not get panels and preferences to save using Illustrator CS6 on a MacBook Pro. When I close out of AI the settings/preferences don't stay. Please help. Thank you Dan

  • Use of communication user in RFC of HCM process types

    Dear All, I have created an HCM-PA package, and when used a communication user in the RFC it gives me the error that no data exists for your user in the Transfer selection criteria activity (This is not an issue with defining target areas I have conf

  • E-Business suite import issue

    We are running 11.5.10.2 on OEL 4, with a 9.2.0.6 database. During a recent recovery operation, we had to forcefully start the database (using allowresetlogs_corruption parameter). Following this , we are now recreating the database as recommended. F