CS4: Does not Mask layer effects. Bug?

If you have an image of say a person and place an effect (a drop shadow perhaps) then apply a layer mask to mask out the waist down, the result should be the waist up person with a drop shadow fading the same as the person. This is how CS3 does it.
NOT SO, in CS4. With CS4, the layer mask will not 'mask' the effect. So you get shadowy legs but the body is masked out.
I am positive this is a bug since i can open the bad CS4 image INTO CS3 and it looks correct.
Attached is same file, i created it in CS4 (with shadow coming thru transparent area) and then opened it in CS3 (clean, no shadow).

This being, despite the occasional Adobe-employee thankfully dropping by, basically a user-to-user-forum I think You should adjust Your expectations regarding tone to the fact that these are people who are under no obligation to help You but do so nonetheless.
If You stay on in this Forum for some time You might get to appreciate the humor more and I for one found the post in question quite entertaining.

Similar Messages

  • CS4 does not support XP 64....

    I just read this from Curt:
    "Premiere CS4 does not support XP64. It supports XP 32, Vista 32, or Vista 64 on PC"
    Why not? and will it be supported in the future?
    Will it work with Windows OS 7?

    It works with xp64 but it's not supported. Vista 64 is what the program is optimized for. I have Windows 7 64 as test OS and it works perfect so far. Right now if I'm doing an After Effects project I'll do it in Win 7 64 because it is faster. Hands down.
    I know there's a lot of hate for Vista but XP is going the way of Windows 2000. I know some people hate that but technology is what it is. I wouldn't be surprised if there is no support for xp when CS5 comes.
    Actually I kinda wish 32 OS would die off so 64bit will become more widely supported.

  • My creative cloud does not have after effect? what should i do ?

    my creative cloud does not have after effect? what should i do ?

    you can download, install and run 32 bit trials but you cannot license them.
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Resizing a TIFF File: Overwriting TIFFFields does not have any effect

    Hi,
    I have some TIFF files that I am receiving through a FAX server. Some of the TIFF files have an image length of *1077 pixels and a DPI of 200x98*. These images open fine in generic viewers like Microsoft Image Viewer and IrfanView and the image size in the information dialog shows up fine (1752x2158). But when I open the images in a LeadTools viewer (that works off TIFF Header tags), the image appears stretched out.
    I am trying to re-sample the image to make it a true Letter size image (1700x2200) with resolution of 200x200. I have been able to set the TAG_X_RESOLUTION and TAG_Y_RESOLUTION which I can see changed in the Tag Viewer. But changing the following tags does not have any effect on the resulting image:
    TAG_IMAGE_WIDTH
    TAG_IMAGE_LENGTH
    TAG_ROWS_PER_STRIP
    the following is the code I am using, I have tried all possible ways (removing TIFFFeilds and then adding them), but it has no effect. The last options is to use a Print Driver from within Java and Print the image (that re-samples it into a 8.5x11 inch image with 200 DPI). At this point, I am just curious about writing TIFFFields with images. Any ideas are appreciated:
    Thanks,
    Manuj
    +
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.util.Iterator;
    import javax.imageio.IIOImage;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.ImageWriter;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.stream.ImageInputStream;
    import javax.imageio.stream.ImageOutputStream;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    import com.sun.media.imageio.plugins.tiff.BaselineTIFFTagSet;
    import com.sun.media.imageio.plugins.tiff.TIFFDirectory;
    import com.sun.media.imageio.plugins.tiff.TIFFField;
    import com.sun.media.imageio.plugins.tiff.TIFFImageWriteParam;
    import com.sun.media.imageio.plugins.tiff.TIFFTag;
    import com.sun.media.imageioimpl.plugins.tiff.TIFFT6Compressor;
                   //set the input stream for to the reader
                   tiffFileReader.setInput(tiffFileInputStream);     
                   //define the writer
                   ImageWriter tiffWriter = (ImageWriter) ImageIO.getImageWritersByMIMEType("image/tiff").next();
                   //define the writer param with compression;
                   TIFFImageWriteParam writeParam = (TIFFImageWriteParam)tiffWriter.getDefaultWriteParam();
                   TIFFT6Compressor compressor = new TIFFT6Compressor();
                   writeParam.setCompressionMode(TIFFImageWriteParam.MODE_EXPLICIT);
                   writeParam.setCompressionType(compressor.getCompressionType());
                   writeParam.setTIFFCompressor(compressor);
                   writeParam.setCompressionQuality(Float.parseFloat("1"));
    // get the metaData
                   IIOMetadata imageMetadata = null;
                   IIOImage testImage = null;
                   for(int i=0;i<filePageCount;i++)
                        imageMetadata = tiffFileReader.getImageMetadata(i);
                        TIFFDirectory dir = TIFFDirectory.createFromMetadata(imageMetadata);
              // Get {X,Y}Resolution tags.
              BaselineTIFFTagSet base = BaselineTIFFTagSet.getInstance();
              TIFFTag tagXRes = base.getTag(BaselineTIFFTagSet.TAG_X_RESOLUTION);
              TIFFTag tagYRes = base.getTag(BaselineTIFFTagSet.TAG_Y_RESOLUTION);
              TIFFTag tagImageWidth = base.getTag(BaselineTIFFTagSet.TAG_IMAGE_WIDTH);
    TIFFTag tagImageLength = base.getTag(BaselineTIFFTagSet.TAG_IMAGE_LENGTH);
              TIFFTag tagRowsPerStrip = base.getTag(BaselineTIFFTagSet.TAG_ROWS_PER_STRIP);
              TIFFField fieldRowsPerStrip = new TIFFField(tagRowsPerStrip, TIFFTag.TIFF_SHORT, 1, (Object)new char[]{2200});
              // Create {X,Y}Resolution fields.
              TIFFField fieldXRes = new TIFFField(tagXRes, TIFFTag.TIFF_RATIONAL,1, new long[][] {{200, 1}});
              TIFFField fieldYRes = new TIFFField(tagYRes, TIFFTag.TIFF_RATIONAL,1, new long[][] {{200, 1}});
              // Create Width/Height fields.
              TIFFField fieldImageWidth = new TIFFField(tagImageWidth,TIFFTag.TIFF_SHORT,1, (Object)new char[]{1728});
              TIFFField fieldImageLength = new TIFFField(tagImageLength, TIFFTag.TIFF_SHORT,1, (Object)new char[]{2200});
              //TIFFTag imageLengthTag = fieldImageLength.getTag();
              // Append {X,Y}Resolution fields to directory.
              dir.addTIFFField(fieldXRes);
              dir.addTIFFField(fieldYRes);
              //add Image Length and height parameters
              dir.addTIFFField(fieldImageWidth);
              dir.addTIFFField(fieldImageLength);
              // dir.removeTIFFField(278);
              dir.addTIFFField(fieldRowsPerStrip);
    testImage = new IIOImage(tiffFileReader.read(i), null, dir.getAsMetadata());
    +
    The resulting image with this carries the updated DPI values (200x200) but still carries the old values of 1752x1077, the length being exactly half of what Irfan view is showing.
    Edited by: Manuj on Nov 2, 2010 10:48 AM

    Your problem for some reason sounds familiar.
    EDIT
    Ok, now I remember. Your post is like this one in the old forums,
    http://forums.sun.com/thread.jspa?forumID=540&threadID=5425983
    Basically, for viewing purposes Irfanview scales the image's height by 2 and changes the dpi to *200x196*. It does this to achieve a 'square' pixel. The image that appears on screen now looks roughly how a printer would print it. However, the image data is still the same squished 1752x1077 image.

  • Flash CS4 does not allow importing .tif files

    Hello, anyone know why Flash CS4 does not allow import .tif a few days to date. I worked very well and now he tells me something of a Swift 3D importer, but have not installed or that or any other programs lately, I also have QuickTime.
    The truth is very strange that no permits, hopefully someone knows of that is due. Need help, please.
    Thanks

    That's exactly what I'm doing (since using 1 Graphic Symbol instead of 2). In my current Flash work I have a bunch of Classic Tweens and those all worked. But when I try a Graphic Symbol that's a line of text, then it suddenly doesn't work (the timeline does change color with an arrow, but the text stays the same size with the exception of the second keyframe where it promptly turns into what's in that one). I even tried a random Classic Tween just now making a rectangle grow to make absolutely sure I wasn't doing something wrong, and that one worked immediately no problem.
    And never mind that. Now it does work. I suppose I indeed did something wrong. Thank you very much for the help!
    Say, one small question: does Adobe Flash have a function to properly set video clips after each other in one big video clip? Or do you have to manually count the frames and add the video clips at the proper frame yourself?

  • Illustrator CS4 does not recognize Genius Tablet's pressure capabilities

    This is vexing.
    Photoshop CS4 works perfectly with the tablet's pressure, yet Illustrator CS4 does not.
    I have reinstalled drivers many times to no avail, could anyone help me out?
    My Tablet is a GENIUS MOUSEPEN 8x6
    I'm using an October 2009 White Macbook with Snow Leopard

    In Illustrator you have to set each brush to Pressure like such:
    You get this…

  • Photoshop CS4 does not have the extract button.

    Photoshop CS4 does not have the extract button.  I've tried downloading from Adobe but am getting an error message "Photoshop could not complete this request because Photoshop does not recognize this type of file"..  how do i get this plug-in installed?

    Buko. wrote:
    If its a Spanish plugin there's not much you can do about that.
    I suppose you could learn Spanish.
    Hey, Buko, you got the points!  Beautiful system. 

  • Error 'window SRID does not match layer SRID' despite using Index MBR

    Hey!
    I'm trying to run the following query:
    SELECT count(*)
    FROM mytable
    WHERE SDO_FILTER(geom, (SELECT sdo_root_mbr FROM user_sdo_index_metadata WHERE sdo_index_name='IDX_GEOM_MYTABLE') ,'querytype = WINDOW') = 'TRUE';
    The index I'm querying in the Subquery is the geometry index for mytable.geom, i.e. I'm doing a spatial query on IDX_GEOM_MYTABLE with it's own geometry index'es MBR. And I get this:
    "window SRID does not match layer SRID"
    How can that happen?
    Regards,
    Christian

    John's right. If I see correctly what you're trying to do you could also do this:
    SELECT count(*)
    FROM mytable
    WHERE SDO_FILTER(geom, SDO_TUNE.EXTENT_OF(mytable,my_SDO_column) ,'querytype = WINDOW') = 'TRUE';
    If the Index was built correctly and is not partitioned this should give you the same result.

  • Photoshop CS4 does NOT use RAM as scratch disk

    Photoshop CS4 does NOT use RAM as scratch disk
    as far as I can tell.
    I have 20 GB RAM and still Photoshop uses the hard disk as scratch disk.
    (OS = Win 7 64).
    Can I force the use of RAM as scratch disk?
    /Larry

    Hi PECourtejoie,
    I really try to understand this, please.
    I don't know if 'Hitting the hard disk brings unacceptable slowdowns in my workflow'.
    Because I don't know what unacceptable slowdowns are.
    Any operation in Phshp takes time, and you always want it to go as fast as possible..
    I know that if Phshp only worked against RAM instead of constantly saving to (and reading from) the hard drive it ought to go faster.
    But I still don't know if this is the case, because there is a constant use of a tempfile on the hard drive's Scratch disk!
    So far I understand that Phshp may BOTH work in RAM AND save data to the hard drive Scratch disk.
    It could be possible that the writing to the hard disk happens when Phshp is idle from other tasks and that the reading only happens when data has disappeared from the Cache in RAM.
    That could be a scenario where a Scratch disk on Hard drive doesn't  interfere with Phshps performance, and an explanation why we should not bother about the Scratch disk on the hard drive.
    But I would very much like to have some confirmation on this, IF this is the explanation of how the Scratch disk on a hard drive works without influencing Phshp's performance??
    Everybody just seem to assume that Photoshop uses (some) parts of RAM as work space - I just need a better understanding of this. And some correct descriptions.
    /Larry

  • Error: Window SRID does not match layer SRID (Spatial)

    Hi,
    I have successfully created an Oracle View with the following SQL:
    SELECT * FROM ZKGJI.L1100_CESTE c WHERE SDO_WITHIN_DISTANCE(c.GEOM, SDO_GEOMETRY(2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1,1003,3), SDO_ORDINATE_ARRAY(425150,95800, 437400,105000)), 'distance=1') = 'TRUE';
    When trying to get the preview of the data of the created Oracle View, I am getting following:
    ORA-29902: error in executing ODCIIndexStart() routine ORA-13208: internal error while evaluating window SRID does not match layer SRID operator ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 333
    The SRID for the fo ZKGJI.L1100_CESTE is '5000000' in Oracle DBMS 11g. How can I set the SRID for the window in the above mentioned SQL?
    Dejan

    The solution SQL is
    SELECT * FROM ZKGJI.L1100_CESTE c WHERE SDO_WITHIN_DISTANCE(c.GEOM, SDO_GEOMETRY(2003, 5000000, NULL, SDO_ELEM_INFO_ARRAY(1,1003,3), SDO_ORDINATE_ARRAY(425150,95800, 437400,105000)), 'distance=1') = 'TRUE';

  • Scrubbing playhead does not show slide effects

    In the Timeline and Effects windows, scrubbing the playhead or pressing the play button or the space bar does move the playhead, but the slide above does not show the effects I designated to its elements. Can you please help me with this issue? I am using a Powerbook with OS 10.9.5. Thanks.

    Effects will only show when doing a real preview, not  Play slide which is not a real preview; and that is what you get when scrubbing as well. In the effects panel you can use Live Preview button to
    see effect.

  • Code does not make any effect:need help

    hello friends,
    now i am going to describe the problem i am phasing
    actually i have embedded japplets in a jsp page(appletjsp) and want to communicate japplets indeed jsp to a servlet in the diffrent derectory but in same context root.
    moreover, i have written code at applet and servlet side both. actually there is a next button in one of japplets(embedded in appletjsp) and i have written the code(for servlet communication) inside button's mouse clicked event. and at servlet side, as usual i have got an inputstream from request and want to forward this request(after getting request dispatcher) to another jsp page(proposing to display this jsp page after clicking next button inside appletjsp ).
    now the problem that made me a bit confused is that when i click next button after running jsp page(containing japplets) then neither there is any error/exception at server/IE's sun java console nor any effect of code at servlet side.
    actually i am not sure that the servlet side code does not make any effect rather it is ony my assumption.
    although i am very new in java and as what i know, to send back response to client side, servlet class needs to be run at server side and probabbly for that there must be a sepreat request from client's applet to server(please dont flame me if i am wrong).
    so please tell  me how can i get running another jsp page running(to which i trying to get request dispatcher inside servlet) after clicking next button?
    applet code
            try{      
            String[] data    ={"santosh","kumar","tripathi"};        
            String strwp ="/UASProject/RegistrationData";              
            URL jspURL = new URL(getCodeBase(),strwp);             
            System.out.println(jspURL);
            URLConnection jspCon = jspURL.openConnection();               
            jspCon.setUseCaches(false);
            jspCon.setDoOutput(true);
            jspCon.setDoInput(false); 
            jspCon.setDefaultUseCaches(false);   
            jspCon.setRequestProperty("Content-Type", "application/x-java-serialized-object");      
           BufferedOutputStream bos=new BufferedOutputStream( jspCon.getOutputStream());
            ObjectOutputStream oboutStream = new ObjectOutputStream(bos);             
            oboutStream.writeObject(data);         
            oboutStream.flush();        
            bos.close();
            oboutStream.close();        
         //  getAppletContext().showDocument(new URL(getCodeBase().getProtocol(),getCodeBase().getHost(),getCodeBase().getPort(),"/UASProject/faces/Editpage.jsp"),"_self");        
         }catch(Exception e) 
           {System.out.println(e);}servlet code
             try { 
                    //    response.setContentType("application/x-java-serialized-object");
                         BufferedInputStream bis=new BufferedInputStream( request.getInputStream());
                        ObjectInputStream inputFromjsp = new ObjectInputStream(bis);                                      
                        reg_data = (String[])inputFromjsp.readObject();                             
                        out.println(reg_data[1]);
                        bis.close();
                        inputFromjsp.close();    
                       HttpSession session =request.getSession(true);
                      session.setAttribute("first_name",reg_data[0]);
                        getServletContext().getRequestDispatcher("http://localhost:8084//UASProject/faces/Editpage.jsp").forward(request,response);
                   } catch (Exception e) {e.printStackTrace();}    although this topic has been made too long, even then please fix my problem.
    thanks

    When you formatted the system you erased everything on the harddrive, obviously, and so its just a matter of putting back the Apps and data that you want from your Backup that you made, BEFORE reformatting the harddrive.  You did make a backup, didn't you??   Your Time machine or other external harddrive backup can be used with Migration Assistant to return the iLife Apps to the iMac.  If he indeed purchased the iLife Apps from the App Store, then you would need to use His Apple ID account to redownload them; not yours.
    Oh, and to answer your other question, no, iLife is not a part of any version of OSX itself.
    Hope this helps
    Message was edited by: Radiation Mac

  • Phototshop CS4 does not  see all of 8GB my RAM memory

         I have not posted anything on this site.  I have a 27" 2.8 Ghz quad core i7  iMac and CS4 does not see more then 3 GB of my system RAM I have 8 GB of RAM.
             It  shows up on my info screen  I am running 10.6.2 and CS4 is suppose to be running in native 64 bit mode with Snow Leopard 10.6.2? I am at a lose and I do not know what to do?  
    Kristyanna Virgona
    Dunsmuir, CA

    It  shows up on my info screen  I am running 10.6.2 and CS4 is suppose to be running in native 64 bit mode with Snow Leopard 10.6.2?
    It is not.
    Please read »Allocating Memory with 64-bit Processors« here:
    http://kb2.adobe.com/cps/404/kb404440.html

  • Conversion exit 'PDATE' does not take an effect

    Have to load the data from flat file which the document date was save in  dd/mm/yyyy so I put the conversion exit 'PDATE' in transfer structure to make it convert to "YYYYMMDD"
    However, it seems the conversion does not take an effect, what I found tracing simulation upload (Monitor Details) is
    record in the file = 1/1/2006
    record in transfer structure = 1/1/2006
    record in comm structure = 06.20.11
    Please advise why's it like that ?
    When I test in SE37--> CONVERSION_EXIT_PDATE_INPUT , it seems the conversion works properly

    Hi,
    You said:"I put the conversion exit 'PDATE' in transfer structure to make it convert to "YYYYMMDD""
    If you have a conversion routine assigned to the infoobject system will allow you to check the conversion .
    regards,
    raju

  • Precomposed layer does not recognise opacity setting (bug)

    Hi
    I have a very simple precomposed layer comprising a single text layer with a drop shadow (layer style). However, it does not recognise the opacity setting in the main layer, even when set to 0% and the playhead is not even on the layer. If I change the opacity in the precomposed layer I can see it coming through to the main layer, but changing the opacity in the main layer does nothing.
    I have reported this to Adobe as a bug, anyone have any other ideas?
    Thanks
    Antony

    There is a fix. Apply a layer style to your pre-comp, then turn off the any styles. CR will now evaluate layer styles in your source comp and render them in the proper order.
    Why does that work? You have to understand how CR works. When you turn on Continuous Rasterization the layer type is identified before any effects or transformations take place. This is why you can scale a vector layer without problems if CR is turned on. This explains why a 3D pre-comp that contains a 2D layer will be rendered as a 2D layer.
    When you apply a Layer Style you are changing the layer type in the same way you change a layer type from 2D to 3D. If you want to have transformations applied to the layer style in the source file you need to change the layer type of the pre-comp layer to Layer Styles.

Maybe you are looking for

  • Make interactive report column uppercase

    Hi All, I have an interactive report in which I have a field which has a column link defined on it. Clicking this link allows me to go to the next interactive report. I would like to display the data in this column as UPPERCASE. I have tried modifyin

  • Business Event Content.in TEM

    Dear All, When a Business Event is created in Training & Event Management module, we find that there is a an option called " Further Information " to enter CONTENS of the Business Event. I would like to know the significance of the " CONTENTS " data

  • When battery is empty my iphone 3GS shuts down and won't turn on for a day!

    Hi, I desperately need your help! When the battery on my iphone runs out, the device, naturally, turns off. But even though I plug it into my charger - nothing happens; the screen is blank and stays like that for some hours, even a day long. I then,

  • Safari won't display Microsoft Outlook WebAccess pages correctly

    Hi, The scroll bars are all messed up when displaying MS outlook webaccess pages. It works fine in firefox, is there any solution to this. Also my companies SAP portal pages have the same issue. What gives with Safari.... Mark.

  • Iphone email app size

    I see that my email app is 1.8gb while my google mail app is only 34mb. Why is the mail app size so big in comparison. Deleting emails seems to make no difference.