Masks not working, producing strange results?...

Hello, I'm having problems with an animated mask.
I have a leg graphic (contains 3 tweened leg pieces), and then a gradient.
In the editor they behave how they should, properly masking the leg. However
the SWF output produces some crazy results shown below:
I've tried setting both as movieclips, using the "Layer" blend mode on the leg, using leg.mask = legMask;
but whatever I try produces the exact same result.
Any ideas?
Thanks!

It sounds like you've applied the Blur filter to the mask instead of the object the Mask is applied to.
This will blur the masked footage:
GROUP
     Footage copy
          Mask
          Gaussian Blur
     Footage
This will blur the edges of the mask:
GROUP
     Footage copy
          Mask
               Gaussian Blur
     Footage
Hope that helps.

Similar Messages

  • (three-way color corrector) secondary color correction masks not working?

    Hi I'm using PP 2014 on Yosemite. Anyone notice (three-way color corrector) secondary color correction masks not working?

    strange. same stats here but im getting intermittent.... sometimes i can use the mask and the effect is only limited to the masked area. most of the time the masked area is ignored and the effect is applied to the whole image

  • Spatial Queries Not Always Producing Accurate Results

    Hi,
    Spatial queries are not always producing accurate results. Here are the issues. We would appreciate any clarification you could provide to resolve these issues.
    1. When querying for points inside a polygon that is not an MBR (minimum bounded rectangle), some of the coordinates returned are not inside the polygon. It is as though the primary filter is working, but not the secondary filter when using sdo_relate. How can we validate that the spatial query using sdo_relate is using the secondary filter?
    2. SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT returns true when validating geometries even though we find results that are invalid.
    3. Illegal geodetic coordinates can be inserted into a table: latitude > 90.0, latitude < -90.0, longitude > 180.0 or longitude < -180.0.
    4. Querying for coordinates outside the MBR for the world where illegal coordinates existed did NOT return any rows, yet there were coordinates of long, lat: 181,91.
    The following are examples and information relating to the above-referenced points.
    select * from USER_SDO_GEOM_METADATA
    TABLE_NAME      COLUMN_NAME      DIMINFO(SDO_DIMNAME, SDO_LB, SDO_UB, SDO_TOLERANCE)      SRID
    LASTKNOWNPOSITIONS      THE_GEOM SDO_DIM_ARRAY(SDO_DIM_ELEMENT('X', -180, 180, .05), SDO_DIM_ELEMENT('Y', -90, 90, .05))      8307
    POSITIONS     THE_GEOM SDO_DIM_ARRAY(SDO_DIM_ELEMENT('X', -180, 180, .05), SDO_DIM_ELEMENT('Y', -90, 90, .05))      8307
    Example 1: Query for coordinates inside NON-rectangular polygon includes points outside of polygon.
    SELECT l.vesselid, l.latitude, l.longitude, TO_CHAR(l.observationtime,
    'YYYY-MM-DD HH24:MI:SS') as obstime FROM lastknownpositions l where
    SDO_RELATE(l.the_geom,SDO_GEOMETRY(2003, 8307, NULL,
    SDO_ELEM_INFO_ARRAY(1, 1003, 1),
    SDO_ORDINATE_ARRAY(-98.20268,18.05079,-57.30101,18.00705,-57.08229,
    54.66061,-98.59638,32.87842,-98.20268,18.05079)),'mask=inside')='TRUE'
    This query returns the following coordinates that are outside of the polygon:
    vesselid : 1152 obstime : 2005-08-24 06:00:00 long : -82.1 lat : 45.3
    vesselid : 3140 obstime : 2005-08-28 12:00:00 long : -80.6 lat : 44.6
    vesselid : 1253 obstime : 2005-08-22 09:00:00 long : -80.0 lat : 45.3
    Example 2a: Using SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT
    Select areaid, the_geom,
    SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(the_geom, 0.005) from area where
    areaid=24
    ResultSet:
    AREAID THE_GEOM(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO,
    SDO_ORDINATES) SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(THE_GEOM,0.005)
    24 SDO_GEOMETRY(2003, 8307, NULL, SDO_ELEM_INFO_ARRAY(1, 1003, 1), SDO_ORDINATE_ARRAY(-98.20268, 18.05079, -57.30101, 18.00705, -57.08229, 54.66061, -98.59638, 32.87842, -98.20268, 18.05079)) TRUE
    Example 2b: Using SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT
    Select positionid, vesselid, the_geom,
    SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(the_geom, 0.005) from positions where vesselid=1152
    ResultSet:
    POSITIONID VESSELID THE_GEOM(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z),
    SDO_ELEM_INFO, SDO_ORDINATES) DO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(THE_GEOM,0.005)
    743811 1152 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(-82.1, 45.3, NULL), NULL, NULL) TRUE
    743812 1152 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(-82.1, 45.3, NULL), NULL, NULL) TRUE
    743813 1152 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(-80.2, 42.5, NULL), NULL, NULL) TRUE
    743814 1152 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(-80.2, 42.5, NULL), NULL, NULL) TRUE
    Example 3: Invalid Coordinate values found in POSITIONS table.
    SELECT p.positionid, p.latitude, p.longitude, p.the_geom FROM positions p
    WHERE p.latitude < -180.0
    2 lines from ResultSet:
    POSITIONID LATITUDE LONGITUDE THE_GEOM(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    714915 -210.85408 -79.74449 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(-79.74449, -210.85408, NULL), NULL, NULL)
    714938 -211.13632 -79.951256 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(-79.951256, -211.13632, NULL), NULL, NULL)
    SELECT p.positionid, p.latitude, p.longitude, p.the_geom FROM positions p
    WHERE p.longitude > 180.0
    3 lines from ResultSet:
    POSITIONID LATITUDE LONGITUDE THE_GEOM(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    588434 91 181 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(181, 91, NULL), NULL, NULL)
    589493 91 181 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(181, 91, NULL), NULL, NULL)
    589494 91 181 SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(181, 91, NULL), NULL, NULL)
    Example 4: Failure to locate illegal coordinates by querying for disjoint coordinates outside of MBR for the world:
    SELECT p.vesselid, p.latitude, p.longitude, p.the_geom,
    TO_CHAR(p.observationtime, 'YYYY-MM-DD HH24:MI:SS') as obstime,
    SDO_GEOM.RELATE(p.the_geom, 'determine',
    SDO_GEOMETRY(2003, 8307, NULL,SDO_ELEM_INFO_ARRAY(1, 1003, 1),
    SDO_ORDINATE_ARRAY(-180.0,-90.0,180.0,-90.0,180.0,90.0,
    -180.0,90.0,-180.0,-90.0)), .005) relationship FROM positions p where
    SDO_GEOM.RELATE(p.the_geom, 'disjoint', SDO_GEOMETRY(2003, 8307,
    NULL,SDO_ELEM_INFO_ARRAY(1, 1003, 1),
    SDO_ORDINATE_ARRAY(-180.0,-90.0,180.0,-90.0,180.0,90.0,-80.0,90.0,
    -180.0,-90.0)),.005)='TRUE'
    no rows selected
    Carol Saah

    Hi Carol,
    1) I think the results are correct. Note in a geodetic coordinate system adjacent points in a linestring or polygon are connected via geodesics. You are probably applying planar thinking to an ellipsoidal problem! I don't have time to do the full analysis right now, but a first guess is that is what is happening.
    2) The query window seems to be valid. I don't think this is a problem.
    3) Oracle will let you insert most anything into a table. In the index, it probably wraps. If you validate, I think the validation routines will tell you is is illegal if you use the signature with diminfo, where the coordinate system bounds are included in the validation.
    4) Your query window is not valid. Your data is not valid. As the previous reply stated, you need to have valid data. If you think in terms of a geodetic coordinate system, you will realize that -180.0,-90.0 and 180.0,-90.0 are really the same point. Also, Oracle has a rule that polygon geometries cannot be greater than half the surface of the Earth.
    Hope this helps.

  • Mask not working correctly?

    Hi every one!
    I have this problem with my mask not working properly, i have an image, and it has an red fruit sitting on a table,
    i have to make the picture sepia using an adjustment layer ( my lecturer says it MUST be done that way)
    but leaving the fruit as red as possible. So when i do this i MUST use the layer mask provided by the
    adjustment layer, but what is happening is the orange is going a very faded red ( but not quite sepia), the table BG does go sepia..
    so its KIND OF working but not really.
    Cheers
    Bunny Face

    Check your mask by OPTION CLICKING on the mask icon on the specific layer. This will show you a greyscale mask. BLACK hides, WHITE REVEALS. SO obviously grey does half of each! So if you dont want the apple to be affected by the layer mask you  must paint it BLACK in the mask of that adjustment layer.

  • Help - Simple mask not working in Flash CS4

    Hi everyone,
    Thanks for taking a minute to read my post.
    I am creating a very simple mask using motion tweening. I created some text on a layer and made it a masked layer. Then I created a mask layer which consists of a circle that will span across the text. When I play the movie the circle does not show up at all in the frames the mask layer spans (it's purple on a black background) and the circle does not move across the text like I told it to with the motion tweening. I don't know why it's not working. For some reason the circle isn't showing on the stage at all and it's not moving across the text. I don't know if I have it set up wrong on the timeline or what. Here's the steps I followed to create the mask:
    1.insert a new layer in which I named it mask and click frame 1 on this layer
    2. select the oval tools on the tools panel and set the stroke to none
    3. set the fill color to purple
    4. draw a circle and click the selection tool and drag a marquee around the circle to select it.
    5. click insert on the menu bar, click motion tween then click ok in dialog box about converting it to a symbol to be tweened
    6. click the last frame in the mask layer and drag the circle to the end of the line of text
    7.click mask on the timeline to select the mask layer, click modify on the menu bar, point to timeline then click layer properties
    8. verify the show check box is selected in the name section, click the lock check box to select it, click the mask option button in he type section, then click ok.
    9. play the movie in which the circle object covers the text on the masked layer as it moves across the stage
    Thanks for your help!
    ashmic19

    Update 8-2-10: In play mode the text was still visible when it shouldn't be but once I tested the movie the mask worked correctly with the text. So problem solved
    -ashmic19
    Thanks for all who viewed this. I finally figured out why it wasn't working. I had the mask layer locked. But now the circle is moving across the text but the text is viewable when it shouldn't be until the circle moves across it. How come it's doing this?
    ashmic19
    Message was edited by: ashmic19
    Message was edited by: ashmic19

  • Mask not working correctly in swf

    Hai Friends,
    I am trying to do a simple masking which works correctly in
    fla but when viewed in swf the text which is masked is not
    seen..What i did is first i wrote some text converted it to
    movieclip then in another layer i did draw a rectangle with some
    color and right clicked the rectangle and masked it When viewed in
    fla the masked text is viewable but when converted to swf the text
    is not seen Is it some problem with Flash Can you please help me...

    Text is not able to be masked in Flash by default.
    You CAN do this IF you embed your text (or simply break it
    apart into vectors if it doesn't need to be dynamic).
    To break apart - select your text and hit Ctrl+B twice (Cmd+B
    on Mac). This will make the text vectors, thus negating the
    problem.
    Otherwise, you need to embed the fonts in 2 ways. First, if
    you like, you can click the "Embed fonts" button in the properties
    panel, and select what to embed. OR, you can go to the Library's
    drop-menu and select "New Font" - choose your font, and click OK.
    Either of these methods embeds your font. BUT, there is one more
    step. You need to give your text box an instanceName, go to the
    actions panel, and enter the following:
    myTextBox.embedFonts = true;
    This will finish the embed process to allow the masking (and
    alpha changes) to work for the text.

  • Mask not working on loaded jpg

    Hi,
    I have a blank movie called "shell" on a frame, which is
    where I load the jpg. - shell.loadMovie("1.jpg");
    Above that the frame that contains the shell movie, I have a
    mask layer. Once the jpg is loaded, I have a shape animation on the
    mask layer that reveals the jpg.... but for some reason it doesn't
    work. If I take away the mask layer it displays properly.
    *UPDATE*
    The mask stops working when the shape tween starts. Initialy
    the masks works when there is no tween on the mask layer.

    Thanks - your example worked for me. Not sure why I couldn't get it to work before. I think it was because the mask and the item were the same exact size as well. I created another example and posted below which is what I was going for.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="absolute">
        <mx:Canvas width="300" height="30" horizontalCenter="0" verticalCenter="0">
            <mx:ProgressBar
                id="prog"
                label="1234"
                width="300"
                height="30"
                indeterminate="true"
                labelPlacement="center"
                mask="{maskCanvas}"/>
            <mx:Canvas
                id="maskCanvas"
                width="295"
                height="20"
                backgroundColor="#000000"
                borderColor="#000000"
                borderStyle="solid"
                cornerRadius="10" horizontalCenter="0" verticalCenter="0"/>
        </mx:Canvas>
    </mx:Application>

  • Inverted layer mask not working

    I havent used PS much of late but in CS6 when layer masking the technique I used to use doesnt seem to work anymore.  I would have two layers.  The top layer I would put a layer mask.  Then I would select all and delete hit the delete button so the mask would turn black and invert.  Then instead of painting black over white to reveal the bottom layer I would paint white over black to bring my top layer back.  I liked doing it like this.   But its not working now.   When I paint with white on the black mask nothing happens?? I tried inverting in the properties but makes no diff.   What am I doing wrong?

    Check the blending mode on your brush.  It may be set to darken or some other blend mode than normal.  As a side note, you can invert a layer mask be making sure it's selected and press ctrl/cmd-i. You can also create a mask where everything is hidden by pressing alt/opt then clicking on the add layer mask icon in the layers pallet.

  • CS5 Layer Mask not working. Hide all not hiding

    I need some help here. CS5 on win 7 64 bit. Duplicate layer and apply a layer mask (alt click) and it does not hide the layer. Just applying a mask and painting with black also does not hide. If I hide the background layer then the mask appears as the white and grey checkerboard pattern, no solid color. Am I missing something simple?
    Thanks, Dave

    The checkerboard indicates places where your entire document is transparent through and through.
    I suspect your mask is working as it's supposed to, and that when the background layer is visible you're just seeing through to the duplicate layer below - which by definition will not look any different on your display.
    Try this:
    Add a brightly colored solid color fill layer just below the layer you're masking.  Now see what the mask does to the upper layer.
    -Noel

  • Properties panel for masks not working

    The apply, disable and delete buttons on the properties panel for masks does not work in PSD CC. Is this a bug or do I have some setting not set correctly? If I want to apply a layer mask I have to drag it to the trash in the layers panel then make a choice on a popup menu. They worked in CS6.

    I don't know exactly what is going on with your friend's system, but the instance you mentioned of Applying layers masks, was actually a safety error trap.  i.e. Do you really want to trash this layer mask or do you want to Apply it before deleting it.
    In CC the Adjustment layer, and Masks share the same Properties panel, so you have to have a mask selected to view the masks panel.  It all works sensibly IME.  As I said above, you were coming at something a bit left field.  That's not necessarily wrong.  Whatever workflow works best for you is best for you, but there might be better ways to do things.
    A lot of us rail innitially at changes to apps we have used in a certain way for many years, but IME they always turn out to be for the better once you get used to them.

  • Installed Mavericks and latest iWorks and some fonts will not work. Strangely these fonts work in Notes and old version of Strickies. Any ideas?

    Installed Mavericks and latest updates for iWorks. Some fonts will not work on Pages or Keynote. Any ideas?

    It appears overkilling to install Bootcamp and a complete Windows environment just for running a single, old-fashioned piece of software...
    Old 32-bits Windows programs usually run fine with WINE, of which I warmly recommend the "PlayonMac" version (free).
    http://www.playonmac.com
    Just try with Playonmac...
    If it does not work, try the other free WINE port for Mac, Winebottler:
    http://winebottler.kronenberg.org/
    If even this does not work, there is a not-free WINE port named Crossover:
    http://www.codeweavers.com/products/crossover-mac/
    It has a free trial mode, so you can test if it works with your scanner program before purchasing it...

  • Clipping Mask not working

    Okay, so I am EXTREMELY new to this (I started about an hour ago!) I am trying to make a clipping mask with the mask being the outline of France and the image inside the French flag. Here are the steps I've taken so far:
    File>New
    Open>Silhouette of France (photo)
    Image trace as silhouette>Expand.
    Drag in to new file.
    Open>French flag (photo)
    Drag in to new file and put in separate layer to the silhouette.
    Place the silhouette on top of the French flag, select all, make clipping mask.
    Then everything goes white!! I can still see the outline, paths etc. of the silhouette but I just don't understand what I'm doing wrong! If someone could explain it to me in layman's terms that would be amazing because I really don't know what I'm doing!
    I'll include the pictures I am using and the end result I keep getting...

    SoBo,
    The France parts seem to be a Group rather than a Compound Path. It would be better if you could expand the Layer(s) completely, also expanding the Group.
    As I said, an Opacity Mask may be more forgiving, and work with a Group.
    I took the France parts to have no stroke and a white fill, if not, you may give it one (or a black fill), then (the Invert Mask suggested in post #2 was based on a black fill, sorry):
    1) Select the two parts of France and Object>Group or Object>Compound Mask>Make;
    2) Select all and in the Appearance palette flyout click Make Opacity Mask with Clip ticked and Invert Mask unticked (ticked if the fill is black).
    From the OP:
    Drag in to new file and put in separate layer to the silhouette.
    To have it in the same layer, just have one Layer and File>Place the flag image into it, then the France image, and take it from there.

  • Secondary colur correction mask not working! Help!

    I am currently working on Premier Pro CS6 editing a music video. I have edited my footage, fixed the tonality and I am now onto color grading it. I took the saturation down to take out the colour and applied RGB curves to add blue into the shadows and then another fast colour corrector to give the video a blue/black depressed feel.
    Going through my footage I wanted to take out certain colours that were too vibrant still. So I thought to make a mask. This is where my problem starts. I open up the three way colour corrector and the RGB curves and go down to secondary color correction and go to mask. When I try to take a sample from the dropper Premier doesn’t pick up the colour from where I want but selects it in other areas of the footage but never on the area I want! I have tried this on my mac book pro and the same is happening. When I have tried it on rushes it seems to work. I don’t understand why it doesn’t work when I have colour graded my footage?! I have tried many different discussions but nothing is pointing me forward. If anyone has any idea of why this is happening and how to solve my problem I would be so thankful!

    Hi ACD,
    After Effects and Photoshop CS6 take .Looks via the LUT engine. That indeed allows for using primaries with low mid high differentiation and should yield really good results.
    Secondaries can be expressed in a LUT as well, but I would typically not recommend using them when you want to integrate .Looks with your After Effects workflow. Here's why:
    - a LUT is never as precise as you'd want it to be for something as complex as secondary color grading - a LUT is always based on interpolation (as opposed to applying the effect in SpeedGrade - there it's all native, no interpolation at all)
    - For a good key you would typically use the denoise and the blur function in the secondaries. Both (by nature) don't translate at all into a LUT, so you'd have to give up using these 2 important tools
    - For a lot of work you'd want the LUT to be accompanied by a mask. That's something that also can't be described in a LUT.
    Think of the LUT support for .Looks you created in SpeedGrade more as a really helpful tool for matching your comps to an overall look you design, not necessarily as the tool to apply a final grade.
    Hope this is helpful.
    Pat

  • Mathscript contourf function produces strange results

    the code "contourf(magic(8))" typed into the mathscripts window produces a different result from the same single line in matlab.  The resolution and colormap differences don't bother me, but the line fragments are clearly incorrect.  This is a simple example of a problem I'm having in my data.  Further, if I'd like to plot the contour line myself, the "hold on" function does not seem to work with the contour.  Any help would be much appreciated.  A simple example demonstrating both problems:
    clf
    colormap(jet)
    contourf(magic(8));
    hold on
    plot(1:8,1:8,'r*')
    shg
    piyrwq
    Attachments:
    matlabmagic8.jpg ‏35 KB
    mathscriptsmagic8.jpg ‏143 KB

    Hello,
    I have looked into this issue some more.  I talked to the developer who wrote the colormap function and it turns out we do have all the colormaps.  However, their use is not documented.  They are passed to the function as an option, e.g. colormap('jet').
    In addition, the order of calls matters.  The colormap only applies to the current plot.  If you generate a new one, the colormap disappears.  Consequently, reverse the order of your colormap and contourf calls as follows:
    contourf(magic(8));
    colormap('jet')
    Grant M.
    Staff Software Engineer | LabVIEW Math & Signal Processing | National Instruments

  • Masks not working

    Hi
    I'm trying to mask out areas of a video and blur them but it doesn't seem to be working.
    I duplicate the video > go to Rectangle Mask > Draw the rectangle > Add filter > Defocus.
    It seems to blur the perimeter of the rectangle but not inside.
    I don't often use masks but I've followed three online tutorials and I just don't get the results they do!
    I'm running v.5.1 Motion 5 and OS X 10.9.2
    Any help appreciated

    It sounds like you've applied the Blur filter to the mask instead of the object the Mask is applied to.
    This will blur the masked footage:
    GROUP
         Footage copy
              Mask
              Gaussian Blur
         Footage
    This will blur the edges of the mask:
    GROUP
         Footage copy
              Mask
                   Gaussian Blur
         Footage
    Hope that helps.

Maybe you are looking for

  • I gt problem in createImage method, Please Help Me!

    This part of code is from Ticker.Class: public void createParams()      {//tickerTape.x = 900;           //tickerTape.y = 40;           int width = getSize().width;           //System.out.println("getSize().width "+getSize().width);           int hei

  • HT202213 I cant find Home Sharing in ITunes 11

    I have the most recent iTunes and cannot find the advanced menu with Home Sharing on it as it says online. I need to fnd this so i can use iTunes on my laptop with all the songsi bought o my desktop.

  • How to enhance the context menu in Web Applications - BW 7.0

    We have to enhance the context menu of several Web Applications and, initially, we based our solution on the paper "How to enhance the context menu of Web Applications", from June, 2002, but the solution described on the paper refers to the BW versio

  • Migration plans for Stock Captivate Animations from AS2 to AS3

    The stock animations that come with Adobe Captivate were published in ActionScript 2 many years ago and carried forward with each new release of Captivate. This presents a problem, because Captivate publishes to ActionScript 3. So, I get lots of Flas

  • ActionListeners and ActionEvents

    Alright guys I am building myself a GUI and am using ActionListeners and ActionEvents however I'm not exactly sure what these 2 things do. I know they are used for buttons seeing as all of my buttons implement them but what specifically do they do. H