Merge layers with their filters?!

Hey Good day,
Is there any method in Flash cs6, we could merge layers with filters?!
I have assigned some filters (Drop Shadow / Glow/etc.) to several  MovieClips in my flash design.
Now if I select the "Direct/Cpu" render mode, the speed will dramatically slow down.
If I select the "GPU" render mode, the speed is perfect but I lose all effects (shadows, glows, etc.)
What is the best solution in this case?
In Adobe Photoshop there is an option (Rasterize Layer Styles) to merge layers with all styles.
Is there any similar option in Adobe Flash to merge movie-clips with filters??
Thanks a lot

you can use a bitmapdata object to create a bitmap of your untransformed movieclip (using the draw method) and use applyfilter method to apply a filter to your bitmapdata object.

Similar Messages

  • Merging layers with adjusment layers

    I need to merge 2 adjustment layers with 2 image layers. When I do, the look changes. Are there ways to do this without changing the look? I have attached a screen capture of the layers affected. Additionally the "Stars" layer has a "Screen" blend mode. This is on a Mac.
    Thanks in advance for any help.

    (grr... wish I could edit posts using my iPad)
    To view at 100% just double-click on the Zoom Tool or go View>Actual Pixels (100%). That way every pixel in your image will be represented by a monitor pixel.

  • Issues with merging layers with layer styles

    Just downloaded CS6 Photoshop off the creative cloud and the merge layer command does not work. What is happening is there is one layer with a layer style then a shape layer and when I hit Cmd E it merges the layers but the layer style will not merge with it. I was chatting it up and everything they recommended did not work. It works on all my other co-workers computers and we are all on the cloud. I tried renaming pref. folder, settings folder, re-installing, holding down shft+option+cmd on start up. I also created a test account but that turned out to be a major inconvenience. Once logged into the account there is nothing there. The suggestions just started getting more ridiculous as chat proceeded. Nothing.
    Has anyone experienced this issue?
    Does anyone have a solution where I don't have to create a whole new admin account just to see if CS6 Photoshop works correctly?
    P.S.
    Adobe customer portal is about worthless.

    Get Rich or Die Tryin wrote:
    Just downloaded CS6 Photoshop off the creative cloud and the merge layer command does not work. What is happening is there is one layer with a layer style then a shape layer and when I hit Cmd E it merges the layers but the layer style will not merge with it. I was chatting it up and everything they recommended did not work. It works on all my other co-workers computers and we are all on the cloud. I tried renaming pref. folder, settings folder, re-installing, holding down shft+option+cmd on start up. I also created a test account but that turned out to be a major inconvenience. Once logged into the account there is nothing there. The suggestions just started getting more ridiculous as chat proceeded. Nothing.
    There are two merge layers type commands  one is merge down involves only two layers and another that is merge visible layers.  In my opinion there is a problem with the way merge down is implemented. When you use merge down if the bottom layer in the merge down has a layer style the merged layer also has this layer style attached.  This means that pixels from the layer merged into it will be effected by this layer style.  The result may well not look like the composite looked before the merge. The will also happen in CS5. Merge visibile layer works the correct way in my view as the merge progresses the top two layers are merge by applying any layer masks and layer styles first and merging the two layers the resulting layer has no layer masks and no layer style. This result is then merged with the next lower layer with its masks and style applied first. The result is a single layer without mask and style that looks like the original composite view.  If your having the problem with CMD|CTRL+E and the result has a layer style try turning  the layer style visibility off see if that helps.  If it helps some  backup to before the merge down  use merge visible or first rasterzise the bottom layer to be merged.

  • Flattening or merging layers with layer effects and maintaining them.

    How do you maintain multiple layer effects when merging or flattening the layers within a group or on their own ensuring they end up eventually to normal and 100 % opacity? (Using PSCC)
    Thank you.

    You want to flattern an image with multiple layers and layer effects?  It should just happen for you, but there some occassions where flatterning does not show the expected results.  When that happens, select the upper-most layer (so long as it is turned on) and add a copy merged layer to the top of the stack (Shift Alt Ctrl e).  Then flattern, and it should be fine.

  • How can I merge layers with multiple layer styles added to them?

    So I have this issue where I have to merge lots of layers in order to finish the job. Thing is that two of them have layer styles added to them. Each one has two different layers styles added to it. If I try to merge the layers, the effect won't stay the same and only one layer style will apply (and not even this one works correctly). Is there any cure for this? Thank you!

    Here is how it looks before I merge the layers.
    And here is how it looks after I merge the layers.
    Why won't it stay the same?

  • Merging layers with envelopes

    Good Day Forum,
    I need to merge these elements to enable me to create an offset path to create a cad cut line.  I can't seem to figure out how to
    create that merged layer?  I have done it easily in the past when there hasn't been envelopes.
    It doesn't seem to like the envelopes?
    Any thoughts would be appreciated.
    Native file attached -
    Cheers,
    Chris

    I would Object>Flatten Transparency with a 100% vector setting and then use the pathfinder Unite first icon on upper left.
    I gave this a stroke.

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

  • Problems with grouped and merging layers

    Sometimes when I combine layered .pdf files (by dragging pages in or doing Merge Files Into a Single PDF), the layers come in grouped (by file name) and other times they do not. Why is that? Also, is there a way to ungroup layers in Acrobat?
    Any help is much appreciated!
    For those interested in the background, I have a bunch of layered .pdf files that I want to combine. They were created from a single large Photoshop image sliced into page-sized pieces so the files all have the same layers and the layers are arranged and named the same in every file. I want the combined PDF book to maintain these layers so the user can, with one click, turn on or off a given layer across all pages of the PDF. Clicking on a layer on every page just isn't going to cut it.
    I figured I would just combine all of the single PDF pages and then merge all of the layers of a given name so that I end up with just one layer for each type. The problem is that the merging works sometimes and not others. I can't figure out why, but it works far more often when the files combine without the layers grouped. It still doesn't work all of the time, but it NEVER works if the layers come in grouped - so I figure I would start there.
    I'm using Adobe Acrobat 9 Pro. I used the method outlined below to turn my layered Photoshop (CS5) files in layered PDF files:
    http://www.ehow.com/how_8296095_convert-photoshop-pdf-layers.html

    After hours (and hours) of debugging Acrobat, I figured out that as long as the file(s) I drop in are not at the end of the document, then no layer groups are formed - all of the layers in both files are at the top level.
    If I drop a file in after all existing pages, then the layers are grouped by file name.
    and
    If there are layer groups then merging fails. The names of the merged layers disappear from the layer list but the conent is left permanently visible.
    If the layers are not divided into groups, then merging works most of the time. I haven't figure out why it occassionaly fails this way too, but so far it's been easy to work around.
    This is Adobe Acrobat Pro 9 so no chance of it being fixed - so amybe this will help someone else in the same boat.

  • I am using Aperture 3 now and I love it. But I would like to purchase or download perhaps some freeware, easy to use photo imaging/editing software with more filters, perhaps layering etc. My Apple mentor suggests Pixelmator or Gimp ?

    I am using Aperture 3 now and I love it. But I would like to purchase or download perhaps some freeware, easy to use photo imaging/editing software with more filters, perhaps layering etc. I don't want something with a very steep learning curve, getting to old for that. My Apple mentor suggests Pixelmator or Gimp ? Are there some others out there? When I was still in the Windows world, I used Photoshop Elements but that is now in my past. Any ideas?

    Pixelmator or Gimp are both nice tools for advanced image processing and compositing. I.e. Gimp can do pretty much the same as Phtoshop. You might also have a look at digikam  http://www.digikam.org/drupal/download/binary
    Digikam is not just an advanced image processing and compositing program, it is also content management system like Aperture or iPhoto.
    I also find GraphicConverter a nice tool, but it is not free.
    If you want your image editing tools to integrate well with Aperture, I would look first at the available plug-ins, start with the plug-ins offered in the Aperture pull-down menu
    Aperture -> Aperture Plug-ins...

  • I have a photo of an ice surface and another of a flower. Now I want to create a merged photo with the flower lying under the ice. I understand that I shall use the function "Layer" and have even read in the manual and looked on a video, but that informat

    I have a photo of an ice surface and another of a flower. Now I want to create a merged photo with the flower lying under the ice. I understand that I shall use the function "Layer" and have even read in the manual and looked on a video, but that information is not sufficiently detailed for me. I have tried several options, but I come now way. Generally it seems that your information is only for the ones who can, not for the people who can´t although it is we who really need to learn. Please give me a step by step (click by click) information on how I can get the ice above the flower and then make the ice partly transparent so the flower is seen underneath. Please send me an e-mail Erik Solbu [email protected]

    Open a new document big enough for your image. Then additional open your ice and flower image as well. Copy each and paste it into your blank document. They will be placed on their own separate layers.
    Make sure in your layers panel. (Bottom right) the ice is above the flower, by dragging it in place. In that same layers panel click the ice layer to select in and find the opacity meter above. Drag to the left until you get the effect you desire.

  • Merging Layers Discards Bevel Effect

    Been dealing with this for a while, and it appears others have also, according to research. Layers with a layer style applied, mostly of the bevel or emboss variety, lose the effect when the layers are merged or the image flattened. Doesn't seem to happen with any other styles, like drop shadows or glows: those will stay, but the bevel will not. These are all Normal layers, nothing tricky going on. It's a program fault and I need to know if there's a workaround. I'm having to resort to saving the whole unflattened image as a jpeg so the client can proof the work, but sooner or later I'm going to need to flatten the image.
    Using Mac PS CS5 Extended, abundance of RAM & Disk space.
    Thanks for any help.
    Cayce

    It does happen with other effects too.
    As far as making it more perfect, there is a configuration change you can make that will make Photoshop calculate everything at 100% size under the covers, then downsize for display, but it comes with some possible nasty side effects.  For one, since it's doing everything at full size it may slow WAYYY down, and for another not all GPUs can handle it.  But if you want to try, the configuration change is this:  In the Performance Prefs, change Cache Levels to 1, then close and restart Photoshop.
    Please be aware that this may destabilize your system, and if you find yourself thinking "wow, this is sluggish!" you'll know why.
    I actually use this setting for my 32 bit Photoshop only (I'm on Windows), because it also causes layer compositing to be done in full 16 bit precision (which I find useful for astroimage processing).  The nice thing is that the two versions (32 and 64 bit) keep their configurations separately, so all I need to do to get high quality compositing is just run the 32 bit version.
    More than you wanted to know, probably. 
    -Noel

  • Merging Layers Defaults Transparency

    I created two vectors in illustrator cs5 and I'm want to put one of them unto the other's artboard. However, whenever I merge or flatten one of the layers, or just cut and paste it, all of the layers go to 100% transparency instead of keeping their own transparency.
    How I fix dis?

    There's nothing to fix because nothing is broken. This is as expected, if per layer transparency is used. Only per object/group/sub-layer transparency is used. Think about it: When you are plucking items from a layer, it can no longer inherit attributes from higher hierarchy levels. Copy&Paste is no different in that regard than moving stuff out of the layer using other means. Likewise, per layer transparency is simply reset to a default, if two layers with non-identical settings are merged. If you really need to retain these things, work with the objects' individual appearance settings...
    Mylenium

  • Why does Illustrator CS4 merge layers when saving document?

    Woking in Illustrator CS4, I have a document with four layers.  The first three contain (1) Background (2) Background effects (3) Pictures and the (4) contains text.  When I save the document and then re-open it, all the layers have been merged into the latest, 4th layer.  All the previous layers are empty.  It's as if everything has been grouped into the text layer, no element can be independently selected, and it is therefore impossible to do further work on the document.
    Can anyone tell me why this is happening?  Am I not saving this correctly?
    And even more important, is there any way of restoring the different layers once this has happened?

    Can anyone tell me why this is happening?  Am I not saving this correctly?
    Well, to what format are you saving? The native AI format should always retain layers. Other formats such as EPS or older PDF Levels may indeed enforce flattening. also make sure you are not confusing layers with groups/ objects. There's a crucial difference between the two.
    And even more important, is there any way of restoring the different layers once this has happened?
    Well, you can manually add new layers and drag&drop your objects and groups into the new layers in the layers panel, but if you save it again to the wrong file format, that is wasted effort, so for the life of it make sure you get that figured out first.
    Mylenium

  • Merging layers in Photoshop Elements 8

    I'm having trouble merging layers in photoshop elements 8. I have a .psd file that I have used in the past to add a background color, shape template, and restrict the size of images I have posted to my website. In the past I have used photoshop elements 6, and to accomplish what I'm trying to do I selected open-apple - G. This worked in the past, but is not bringing the layers together as expected. I went online and found that I could accomplish this by holding down option and clicking on the line that seperated the two layers, and this worked for me once and I have been unable to repeat it since. Any idea what I'm doing wrong. I'm trying to apply a style to these web photos, and it's simply not working for me. Thanks in advance for any help you may be able to offer.
    - William

    Looking at your image, you do know you have a layer set/group,which is like a folder in the layer structure? You can't apply a layer style to a folder, which is what you're trying to do in your screenshot.
    This gets very confusing because of adobe's switching the names for these things around:
    1. You have what used to be called a layer set and is now called a layer group, which is a folder in the layer structure. PSE doesn't natively do these: is this your image with the group created via an add-on, or did someone send it to you this way?
    2. What used to be called layer groups are now called clipping masks. That's when you want to do something like crop the visible part of a layer to the shape of the layer beneath it.
    It's not really clear where you want the layer style, why you have a layer group, and which layer you want the style on. If you can explain more, it would help.

  • Merging Layers

    I would like to know if there is a way to automatically merge a "base" layer with all other layers individually.  For example, Layer one is an image, the "base layer". Layers 2 thru 200 are images that need to be merged with the base layer individually and then saved as individual files.  We are now turning layer 2 on and saving, turning layer 2 off, turning on layer 3 then saving, etc.  Hoping to find an easier and quicker method.  Can anyone help?  Thanks/

    Take a look at File>Scripts>Export layers to files.
    Once that is done, you can then use Layer>Merge Layers or Layer>Flatten image. The difference has to do with transparency, merge will leave the background transparent, whereas flatten will convert transparent areas to a white background. If you don't have any transparent areas, then either would work fine.

Maybe you are looking for

  • Firefox freezes sometimes when I try to open a web site in a new window.

    For the past few weeks I am having an intermittent problem with firefox freezing. It happens when I try to open a site in a new window. Most of the time I have to go to task manager to close it and re-start. And almost always when I re-start it freez

  • Automatic page numbering not working in book files

    Hi. Using CS3, I have successfully created a book in the past, where the dialog box of the book file shows consecutive page numbers for each file. e.g file 1 1-4 (indicating 4 pages, starting on page 1) file 2 5-22 (indicating 18 pages, starting on p

  • Ovm 3.3.1 lun issue

    ok needing some help with an issue, i'm not sure what to do about.. have two hosts with dozen or so vm's running on san storage already working with both hosts, with multipath. added a new lun 500gb, can't get it added to host 2. details of new lun:

  • My E 7-00 mass storage not working

    i have nokia e 7-00 its giving an error massage disk error. I have tried to format the the mass storage with windows but windows also cant format it. So i want to know does the phone has a memory card inside it or its just a chip on the board? Please

  • Transfer of photos from iphone to facebook

    How can I transfer a photo from my iphone directly to my facebook account ? Many thanks for your help