How do I merge multiple layers in CS6?

I am used to using the keyboard commands cmd + E and cmd + shift + E in previous CS Editions. I am currently trying to merge together a number of paths please help!

Hello, could you post a screenshot of what you get, or describe the file? Are the two shapes on different layers?
If they are on different layers, just multiple-select the layers, and use CTRL+E. Note that their stroke and fill will be those of the topmost layer.
To combine sub-paths, look at the options you'll find under this button on the Shape Tool's Option Bar:
The last one will create a single shape.
http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4755563-239412/combine.gif
Hope this helps!

Similar Messages

  • How do I merge multiple subscriptions to the same podcast?

    In iTunes I have multiple subscriptions to the same identical podcast (same podcast name and same url) ... some of the subscriptions have duplicated entries and some have unique entries ... (how this happened I have no idea, but that is beside the point) ... my question is how do I merge these multiple subscriptions into a single podcast subscription? I have tried cut & paste in the hope that I could then delete (unsubscribe) to all of the redundant/repeated subscriptions, but that does not work ... in explorer I have found that ALL my podcast files from ALL my podcast subscriptions are found in a single folder .. so all the entries from my multiple subscriptions are there as well ... this smoked my hope that each podcast subscription would have it's own folder or sub-folder ... so I'm stuck ... does anyone know how I can merge multiple subscriptions to the same podcast into a single podcast subscription (without my losing the uniques scattered throuhout the mutiple subscriptions) ... ???

    I would love to be able to do exactly what you are suggesting .. the problem is, if I delete the duplicate subscriptions, I lose the unique files unique to the duplicate subscription I delete ... the problem is that I can't find a way to save/move the uniques (in advance of deleting the duplicate subscription) into a single subscription ... is there a way to do this ??? Does anyone know how to do this ??? Please help !!!

  • How do I merge multiple Excel files with more than one tab in each file using PowerQuery?

    Hello
    I have 12 Excel (.xlsx) files and each file has three identically named and ordered tabs in them. 
    I know how to merge multiple Excel files in a folder using M (those guides are all over the web) but how do I merge multiple Excel files with multiple (yet identically named and ordered) tabs? Surely it is possible? I just don't know how to do it in M.
    Cheers
    James

    What Laurence says is correct, and probably the best thing to do when the sheets have differing structures. Here is an alternate approach that works well when the sheets all have the same structure.
    When you first open the Excel file from Power Query, you can see its structure in the navigator at the right-hand-side of the screen. If you select the root (which is the filename itself) and click Edit, you'll see all the tabs in the sheet as a single table.
    You can now do filtering based on the Name, Item and Kind values. When you've reduced the set of things down to the sheets you want, select the Data column and say "Remove Other Columns". If the sheets don't have any header rows, you can just click the expand
    icon in the header and you'll be done.
    Otherwise, if the sheets have headers or if some other kind of sheet-level transformation is required against each sheet before doing a merge, you'll have to write some M code manually. In the following example, each sheet has a header row consisting of
    two columns: Foo and Bar. So the only step I need to perform before merging is to promote the first row into a header. This is done via the Table.TransformColumns operation.
    let
        Source = Excel.Workbook(File.Contents("C:\Users\CurtH\Desktop\Test1.xlsx")),
        RemovedOtherColumns = Table.SelectColumns(Source,{"Data"}),
        PromotedHeaders = Table.TransformColumns(RemovedOtherColumns,{{"Data", each Table.PromoteHeaders(_)}}),
        ExpandData = Table.ExpandTableColumn(PromotedHeaders, "Data", {"Foo", "Bar"}, {"Data.Foo", "Data.Bar"})
    in
        ExpandData

  • How do you merge multiple pdf's into one document?

    How do you merge multiple pdf's into one document?

    Hi pharmovative,
    You can use the Combine PDF feature of Adobe PDF pack to combine multiple PDF files into one document. (Or, if you have the full version of Acrobat, you an do it there as well by choosing Create > Combine Files into a Single PDF.)
    Please let us know if you need further assistance.
    Best,
    Sara

  • How do I merge multiple pdf documents into 1 with my iPad ?

    How do I merge multiple pdf documents into 1 with my iPad ? We are required by our customer 1 document that includes 4 different documents from different departments. Currently with our PC we can merge PDF files, excel or word files in to 1 PDF document. How can I do the same with our iPads and iPad minis using adobe?

    blogs.adobe.com We are excited to announce that Adobe CreatePDF application is now available on iOS. With this, Adobe brings rich, high-fidelity and Acrobat-like PDF creation to the iOS devices. You can now convert all your documents on iPad, iPhone & iPod touch devices to PDF for reliable, secure sharing and viewing across PCs, tablets & Smartphones.
    Robert Monsalve
    [signature removed by host]

  • HT201269 how do I merge multiple duplicate contact entries with cell home and e-mail entries

    how do I merge multiple duplicate contact entries with cell home and e-mail entries?

    Try linking cards:
    Open any contact you want to merge, tap on Edit and look at the bottom part of it.  You'll find 'Link Cards' and from there you may select the contact you want to link with the one you're looking at. So if you have:
    Contact 1: John A (job)
    Contact 2:  Business Name (who is also John A but you saved it as a different contact)
    Contact 3: Something else that's also John A
    You can link all three cards into one.  If you choose to, you may unlink them at any time, just tap Edit and then the red circle. Your contacts won't be deleted, but they won't appear under the same ID anymore.

  • How do I automate merging multiple layers with same name?

    It was suggested I ask this question in this forum - any advise gratefully received!
    I have to combine over a 800 files into one photoshop file. Each file has with sixty layers. The 60 layers in each file are named identically: Layer 1, Layer 2, Layer 3 up to Layer 59, Layer 60. My intention is to create a final composite file with 60 merged layers (for an animation). That is, with all the Layer 1's merged, all the Layer 2's merged, all the Layer 3's merged and so on. What I need is a script which will merge all layers with the same layer name, ie all the Layer 1s, all the Layer 2s etc (ideally without having to merge each set of layers separately).
    I am using Photoshop CS6 and at present I am merging by using the find/name function, then highlighting all the layers selected and then using 'merge layers'.
    Any ideas?
    Best
    JR

    This might be close, it will prompt for a folder containing all the 800 files, it will use tif or psd files.
    Once you have selected the folder sit back and watch...
    #target photoshop
    app.bringToFront();
    main();
    function main(){
    selectedFolder = Folder.selectDialog( "Please select input folder");
    if(selectedFolder == null) return;
    var fileList = selectedFolder.getFiles(/\.(tif|psd)$/i);
    open(fileList[0]);
    checkBackGround();
    setLayersVisOn();
    for(var z = 1;z<fileList.length;z++){
        open(fileList[z]);
        checkBackGround();
        setLayersVisOn();
        dupLayers(app.documents[0].name);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    if(z % 9 == 0) mergeSameNamedLayers();
    mergeSameNamedLayers();
    function checkBackGround(){
    activeDocument.activeLayer = activeDocument.layers[activeDocument.layers.length-1];
    if(activeDocument.activeLayer.isBackgroundLayer){
        activeDocument.activeLayer.name=activeDocument.activeLayer.name;
    function twoOrMoreSelected(){
    var ref = new ActionReference();
    ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
    var desc = executeActionGet(ref);
    if( desc.hasKey( stringIDToTypeID( 'targetLayers' ) ) )  return true;
    return false;
    function mergeSameNamedLayers(){
    //Get a list of the layer names
    var layerNameList = getNamesPlusIDs();
    //create an array for unique layer names
    var uniqueName = new Array();
    for(var s in layerNameList){
        if(layerNameList[s][2] == "false") uniqueName.push( layerNameList[s][1].toString());
    //now we should have unique layer names
    uniqueName = UniqueSortedList( uniqueName ).sort();
    //select all layers with the same name, merge them and set blendmode
    var BlendMode = new String();
    for ( var w in uniqueName){
        deselectLayers();
        for(var z in layerNameList){
            if(uniqueName[w].toString() == layerNameList[z][1].toString()){
                //select these layers and get blendmode.
                BlendMode = layerNameList[z][3].toString();
                selectLayerById(Number(layerNameList[z][0]), true);
    if(twoOrMoreSelected()) activeDocument.activeLayer.merge();
            setBlendMode(BlendMode);
    function setBlendMode(blendMode) {
    var desc = new ActionDescriptor();
    var ref = new ActionReference();
    ref.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
    desc.putReference( charIDToTypeID('null'), ref );
    var desc2 = new ActionDescriptor();
    desc2.putEnumerated( charIDToTypeID('Md  '), charIDToTypeID('BlnM'), stringIDToTypeID(blendMode) );
    desc.putObject( charIDToTypeID('T   '), charIDToTypeID('Lyr '), desc2 );
    executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    function deselectLayers() {
        var desc01 = new ActionDescriptor();
            var ref01 = new ActionReference();
            ref01.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc01.putReference( charIDToTypeID('null'), ref01 );
        executeAction( stringIDToTypeID('selectNoLayers'), desc01, DialogModes.NO );
    function UniqueSortedList(ArrayName){
    var unduped = new Object;
    for (var i = 0; i < ArrayName.length; i++) {  
    unduped[ArrayName[i]] = ArrayName[i];
    var uniques = new Array;for (var k in unduped) {
       uniques.push(unduped[k]);}
    return uniques;
    function selectLayerById(ID, add) {
        add = (add == undefined)  ? add = false : add;
    var ref = new ActionReference();
    ref.putIdentifier(charIDToTypeID('Lyr '), ID);
    var desc = new ActionDescriptor();
    desc.putReference(charIDToTypeID('null'), ref);
    if (add) {
      desc.putEnumerated(stringIDToTypeID('selectionModifier'), stringIDToTypeID('selectionModifierType'), stringIDToTypeID('addToSelection'));
    desc.putBoolean(charIDToTypeID('MkVs'), false);
    executeAction(charIDToTypeID('slct'), desc, DialogModes.NO);
    function dupLayers(DocName) {
    var desc = new ActionDescriptor();
    var ref = new ActionReference();
    ref.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
    desc.putReference( charIDToTypeID('null'), ref );
    var ref2 = new ActionReference();
    ref2.putName( charIDToTypeID('Dcmn'), DocName);
    desc.putReference( charIDToTypeID('T   '), ref2 );
    desc.putInteger( charIDToTypeID('Vrsn'), 5 );
    executeAction( charIDToTypeID('Dplc'), desc, DialogModes.NO );
    function selectAllLayers() {
        var desc29 = new ActionDescriptor();
            var ref23 = new ActionReference();
            ref23.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc29.putReference( charIDToTypeID('null'), ref23 );
        executeAction( stringIDToTypeID('selectAllLayers'), desc29, DialogModes.NO );
    function setLayersVisOn(){
       var ref = new ActionReference();
       ref.putEnumerated( charIDToTypeID('Dcmn'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
       var count = executeActionGet(ref).getInteger(charIDToTypeID('NmbL')) +1;
    try{
        activeDocument.backgroundLayer;
    var i = 0; }catch(e){ var i = 1; };
       for(i;i<count;i++){
            ref = new ActionReference();
            ref.putIndex( charIDToTypeID( 'Lyr ' ), i );
            var desc = executeActionGet(ref);
            var layerName = desc.getString(charIDToTypeID( 'Nm  ' ))
            if(layerName.match(/^<\/Layer group/) ) continue;
            if(!desc.getBoolean(stringIDToTypeID('visible'))){
                var list = new ActionList();
                list.putReference( ref );
                desc.putList( charIDToTypeID('null'), list );
                executeAction( charIDToTypeID('Shw '), desc, DialogModes.NO );
    function getNamesPlusIDs(){
       var ref = new ActionReference();
       ref.putEnumerated( charIDToTypeID('Dcmn'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
       var count = executeActionGet(ref).getInteger(charIDToTypeID('NmbL')) +1;
       var Names=[];
    try{
        activeDocument.backgroundLayer;
    var i = 0; }catch(e){ var i = 1; };
       for(i;i<count;i++){
           if(i == 0) continue;
            ref = new ActionReference();
            ref.putIndex( charIDToTypeID( 'Lyr ' ), i );
            var desc = executeActionGet(ref);
            var layerName = desc.getString(charIDToTypeID( 'Nm  ' ));
            var Id = desc.getInteger(stringIDToTypeID( 'layerID' ));
            if(layerName.match(/^<\/Layer group/) ) continue;
            var layerType = typeIDToStringID(desc.getEnumerationValue( stringIDToTypeID( 'layerSection' )));
             desc.hasKey( stringIDToTypeID( 'smartObject' ) )  ?  SO = true :  SO=false;
             var blendmode = typeIDToStringID(desc.getEnumerationValue( stringIDToTypeID( 'mode' )));
    Names.push([[Id],[layerName],[SO],[blendmode]]);
    return Names;

  • Merge multiple layers

    is it possible to select multiple layers (with layermask) and merge them?
    tell application "Adobe Photoshop CS6"
        tell current document
            set current layer to every layer of layer set "bloem 1-9" of layer set "Bloem"
            tell current layer
                merge
            end tell
        end tell
    end tell

    c.pfaffenbichler,
    You are right, this is the wrong place to ask.
    thanks.

  • How do you merge multiple songs into one album?

    When I added a downloaded album to iTunes, it created one album for each track. How do I merge all of these albums/tracks into one album?

    Some albums will fracture into a million pieces if you have different artist names. How the columns are sorted can effect this.
    If it is a multiple artists on one album select 'Compilation' in the options section for all of the songs on the album. 
    NOTE: You need to have multiple items selected to set this flag!

  • HT201340 How do I merge multiple iphoto libraries

    I have multiple iphoto libraries on an external HD. Not much memory left on my mac HD. So I'm trying to clear up some memory. I would like to merge/organize the iPhoto libraries on the external HD. But I can't figure out how to separate the photos.  I just want to organize them into seperate years, i.e., photos 2009, 2010, 2011, etc.
    And since I now have aperture, how can I get these photos organized into simple annual libraries onto the external HD?
    Sorry if this has been posted a million times, but I can't figure it out and don't want to lose any photos.

    Sorry if this has been posted a million times, but I can't figure it out and don't want to lose any photos.
    Reorganizing your photolibraries can be error-prone, so before you start, I'd recommend to check your backups of the libraries, if they are current and working.
    I just want to organize them into seperate years, i.e., photos 2009, 2010, 2011, etc.
    And since I now have aperture, how can I get these photos organized into simple annual libraries onto the external HD?
    iPhoto does not support to export partial libraries or to import and merge photo libraries, but Aperture does.
    Your question does link to the document "Aperture 3.3: How to use Aperture to merge iPhoto libraries" that describes how you can merge libraries.
    Do you have compatible Aperture and iPhoto versions? Aperture 3.4.5 and iPhoto 9.4.3?  If yes, then you can unify your photo libraries by creating a new Aperture library on your external drive and using the command "File > Import > Library" to import your iPhoto libraies one by one into the the Aperture library.
    Aperture works well with large libraries. You could keep all images in that one library and be done.
    But if you really want separate, small libraries for each year, define smart albums in Aperture:
         New > Smart album
    and in the "Smart Settings" HUD for the album press "Add Rule" and add a "Date" rule. Set this rule to "Capture Year is ....".
    This way you will have all images grouped by date in the library Inspector.
    You could then proceed to export partial Aperture libraries for each year: Select the smart album and use the command "File > Export > Album as library". This will create a new Aperture library, just for that year. You can open this library in iPhoto, if you want.
    I myself prefer to have all my photos in just one library; that makes it much easier to search all my photos at once and to combine them freely.
    Regards
    Léonie

  • How can I merge the layers ? (in C#)

    Hi
    I exported a map to PDF on ESRI ArcGIS Engine and found that there were more layers than I had expected.
    And so I want to delete or merge some of the layers.
    I found the way in Acrobat Pro Application, but cannot found the way in Acrbat SDK.
    Could you let me know how to delete or merge the layers with Acrobat SDK (C#).

    There are no C# APIs for that doing, only C/C++ APIs available to plugins

  • How can I merge multiple contacts?

    I used Verizons Contacts Importer and I have multiple contacts now for each person-one for each of their emails or phone numbers. How can I merge these easily? Thanks.

    I used Verizons Contacts Importer and I have multiple contacts now for each person-one for each of their emails or phone numbers. How can I merge these easily? Thanks.

  • How to mask to specific layers in cs6

    I am following a tutorial and trying to mask a shape layer to another shape layer that is multiple layers down. (or has multiple layers between these two.)
    Essentially I want the white box to be masked to show only to the inside of the black box.
    Can someone explain what I'm doing wrong here?
    http://i2.photobucket.com/albums/y13/wragen22/ScreenShot2013-01-27at102804AM_zpsf203de6f.p ng

    Or, a quick and easy process would be as follows:
    1) Select your black box layer (not the mask you may have made following my directions above), and option click on the icon. Choose select pixels.
    2) Create a new layer above your black box layer.
    3) At this point you could deselect the portion of the box you do not want the white overlay to effect, but I am going to use a gradient:
    4) Play with the Blending Mode and opacity of the layer for different effects.
    Original:
    Overlay:
    Soft Light:
    Is this helping at all?

  • How do I merge multiple audio clips to one?

    Hey Everyone,
    After syncing multiple clips in PE I import them into Premiere CS6 and they are all layered with their own audio tracks (though the video clips are synced with only one audio track). This causes inconsistent audio levels. How do I join all these clips which originally derived from one audio recorder to merge as one? If there is a step by step process please advise. Thanks in advance, you guys are beyond awesome.
    Mike Diaz

    If all audio is from a single audio source (with consistent levels0 ..the only reason you would be getting different audio levels on different audio tracks is if the Mixer has different settings....or the audio has been changed at clip level.
    Its usually desireable to have audio clips on different tracks.
    Can you not just drag the audio clips to a single audio track...if that's what you really need?
    Alternatively a mixdown...but that requires sorting the levels anyway.  ( Mixer on automation or at clip level.)

  • How do I merge multiple artboards into another document?

    I am working on a team, and we'd like to combine our work into a master document that contains all of our different artboards.
    I have a UI document set up with multiple sets of different artboards.  I.E. a row of 32x32 artboards with individual small icons, a row of 60x60 artboards with bigger icons, etc. so recreating these would be very cumbersome.
    I know it's possible to just copy paste everything into one document, but what is the strategy for copying the artboards as well?
    I'm currently looking at having to rebuild the artboards in the master document, so any help would be MUCH appreciated!!  Thank you.
    -Nick

    Ah that's something! I drew 32x32 rectangles around my icons, copied rectangles+icons over to new document.  Then selected just the rectangles around the icons and did Object > Artboards > Convert to Artboards
    Now I just have to rename them again, which is not as bad as recreating each one.  That's pretty awesome, thank you Monika!
    Further question for Monkia/Adobe/comminuty: is there an even more automatic way to merge artboards from two files together?  Ideally it would just merge all the artboards to a new file (in the same place, etc).
    The Artboard feature makes Illustrator a very viable tool for app UI design (center icons in individual art boards, export with transparency, at different resolutions etc).  Having icons be symbols is also useful - change an icon, it propagates throughout the layout.
    However, not being able to merge artboards (with respective names) from different files prevents it from being terribly useful for teams.
    I found a discussion regarding a script for CS5 by CarlosCanto that seems to do this, but it doesn't work on CS6:
    http://forums.adobe.com/thread/954411
    Again, thank you Monika, your advice just saved me a TON of time, and I hope this feature makes it into future versions of Illustrator.
    -Nick

Maybe you are looking for

  • G3 PISMO QUESTIONS

    Hello everyone, I purchased a G3 Pismo for $50 dollars of of E-BAY "untested" and it didn't have a power adapter, so I used the adapter from the wallstreet. It wouldn't start, so I unplugged the PRAM battery underneath the keyboard and BONGGGG it fir

  • Problems with Erase and Install 10.6.4

    We were able to upgrade to 10.6.4 and run Time Machine. Then the errors started, like losing access to iPhoto Library and then Mail accounts and Apple was able to help. We have four accounts, Mom and the kids. And suddenly after 90 days the computer

  • HOW TO REGISTER jars ???

    Hi guys, I've got a problem during (un)deployment of sda files. If I try to undeploy my adapter.sda I get : [permissions_collection_operator]: domain[apps//ecs.com/com.ecs.aii.af.tc.ra/connector/connectors/adapter.rar/adapter.jar] not removed, becaus

  • Problem with rebuilding iPhoto library database

    Some of my videos in iPhoto play fine, however, I get the ! sign with some of them when I attempt to play.  I've tried rebuilding the library database, but the process gets stuck at 92% and never completes.  What now?

  • Link between notification number and meter reading order in ISU

    what is the link between notification number and meter reading order in ISU. i have written a program to close all open notifications but now i want the program to close only notifications with closed meter reading orders but i cant find the link bet