Clip shrinks in size from mask shape?

made dupe of clip in v1 and put in v2 directly above.
selected image flipped image around and then did a horizontal flop (and tried unselecting image)for mirror.
selected effects/video filters/matte/ mask shape
as soon as I selected mask shape my image shrinks in size? I looked at scaling but it still shows 100%?
anyone know why?
thank you all!

Thanks for trying it out on your computer. Still no answer.

Similar Messages

  • Image shrinks in mask shape?

    made dupe of clip in v1 and put in v2 directly above.
    selected image flipped image around and then did a horizontal flop (and tried unselecting image)for mirror.
    selected effects/video filters/matte/ mask shape
    as soon as I selected mask shape my image shrinks in size? I looked at scaling but it still shows 100%?
    anyone know why?
    thank you all!

    My mess up. I have a bluetooth mouse and it had a low battery. I usually have a message that pops up to warn me of low battery but this time I did not.
    thank you all

  • My photos shrink in size when emailed from IPHOTO or attached - How can I fix this. My friends say they can't see my pictures... thanks!!

    My photos shrink in size when emailed from IPHOTO or attached - How can I fix this. My friends say they can't see my pictures... thanks!!

    When you email from iPhoto, you have a choice as to the size of the picture - choose medium and your friends will be able to see them.  By the way, do your friends click on the photo attachment  in the mail to open it?

  • Convert shape created from masks into it's own shape or mask?

    Hi everyone.
    I've created a shape layer (an ellipse) and used a couple different masks to create a more unique shape. Now, I'd like to extrude that shape into 3D, but as you may know, the ray-tracer doesn't support masks.
    So I'm wondering, how would you convert this new shape into an actual shape that uses no masks? I'd like it to be it's own shape or at least have a path that resembles he new shape I created from the shape layer and those masks.
    Any idea how to do this? Thanks.

    I'd like to extrude these shapes.
    http://content.screencast.com/users/Dreamcube017/folders/Jing/media/94b498bd-8ac2-41b4-ba3 0-e87276a546d7/AE%20Shapes.png
    Now I know these are made from solids, but the original is an ellipse mask with some other masks drawn over it.
    I was able to make these same half rings with a shape layer and some masks. I'd ultimately like to make that shape a shape layer of its own with no masks so that I can extrude it in 3D.
    I wish there was some sort of magic wand tool that would let me select the shape, save the selection as a path, then use that... man I really have to go into a whole nother program to do this? Geeze.
    Thanks guys.

  • How to shrink Virtual PC screen size from full screen

    How to shrink Virtual PC screen size from full screen?

    Nobody out there has a solution to this?

  • How to retrieve "KeyValue" from multiple Shape paths then "SetValue" to Mask path Keyframes?

    Hello AEScriptsComm.,..
    i have one question (hopefully the tutorer will answer soon), which is the goal and reason i'm learning ExtendScripts:
    I have a few dozen Adobe Illustrator, imported Shape Layers with paths "Created..from Vector Layers" in AEffects.
    In order to use a .jsxbin script to change every path to the same number of verticies for animating, i must 1st convert them to Keyframes on the same Mask Path property.
    1) i hoped to please be shown\sent an example showing how to,..
    a) Get\Retrieve "KeyValue" from multiple, single (Shape Layers):Outlines > Contents > Group > Path > Path as shown in screenshot "4-CreateShapeFromVecLyr2Outlines.JPG",
    and then,..
    b) "SetValue" from those paths into Mask > Mask Path keyframes also in screenshot "1-ExtendScript_ShapePathsTOMaskPathKeyframes.JPG"?
    Really appreciate any help soon as time allows,
    Jeff

    Hello Xavier,
                       esp. with my limited experience i can't determine how your concise script works.
    Because it 1st errors  esp. with undefines  i'm thinking at best its incomplete (or algorithm) to give me the gist and i'm to fill in the blanks, which i am doing with the sort of working code example pasted below.
    Its written with every  definition, declaration and initialization completed, so a novice like me can read the manuals, rev. eng. pertinant script(s), then with fragmented code and understanding quickly connecting to form a complete custom script, as we've all done.
    like this:
    var comp = app.project.activeItem:
    var layer  = comp.layers.addSolid([1,1,1,], layerName, comp.width, comp.height, 1.0, comp,duration);
    therefore,..
    var CompLayerSolid = app.project.activeItem.layers.addSolid([1,1,1,], layerName, comp.width, comp.height, 1.0, comp,duration);
    ..then with such direct access in other essentials, i can substitute compatible properties, methods,  parameters etc. and remaining code that affect the layer objects i need to control simultaneously. Also thereby learning more complex code quickly enough to use.
    Only, i hoped to save time here by those already familiar.
      But by comparison your script without declarations or many references in AE's CS6 Scripting Guide and online, i can't decipher or understand,
    although you wrote this more complete segment at CCow:
    "shapeLayer.content.addProperty("ADBE Vector Graphic - Fill");",
    ..in which is the addProperty i 1st looked for in your script after erroring with "ShapeLayer is undefined"
    But i could'nt find a ref. to either .content or content. anywhere in ExtendScript, nor "targetLayer.mask", and "targetLayer" i found once in ref. to ExtendScript as an AE layer name. So perhaps their your variables?, you see i can't determine or use.
    i don't know that was'nt meant, maybe a bit to tell me do my own research?,  no offence, can't confirm that without reply, hope you will, but my research is why i'm here and your probably advanced script could only help with your assistance.
    Thanks anyway,
    Cheers.
    function()
    var comp = app.project.activeItem;
    var masksLayer = comp.selectedLayers[0];
    var masksGroup = masksLayer.property("ADBE Mask Parade");
    app.beginUndoGroup(rd_MasksToShapesData.scriptName);
    // Create an empty shape lay
    // Get the mask layer's pixel aspect; if layer has no source, use comp's pixel aspect
    var pixelAspect = (masksLayer.source != null) ? masksLayer.source.pixelAspect : 1.0; //copixelAspect;
    // Iterate over the masks layer's masks, converting their paths to shape paths
    var mask, maskPath, vertices;
    for (var m=1; m<=masksGroup.numProperties; m++)
    var suffix = " Shapes";
    var shapeLayer = comp.layers.addShape();
    shapeLayer.name = masksLayer.name.substr(0,31-suffix.length) + suffix;
    shapeLayer.moveBefore(masksLayer);
    var shapeLayerContents = shapeLayer.property("ADBE Root Vectors Group");
    var shapeGroup = shapeLayerContents; //.addProperty("ADBE Vector Group");
    //shapeGroup.name = "Masks";
    var shapePathGroup, shapePath, shapePathData;
    // Get mask info
    mask = masksGroup.property(m);
    maskPath = mask.property("ADBE Mask Shape");
    // Create new shape path using mask info
    shapePathGroup = shapeGroup.addProperty("ADBE Vector Shape - Group");
    shapePathGroup.name = mask.name;
    shapePath = shapePathGroup.property("ADBE Vector Shape");
    shapePathData = new Shape();
    // ...adjust mask vertices (x axis) by pixel aspect
    vertices = new Array();
    for (var v=0; v<maskPath.value.vertices.length; v++){
    vertices[vertices.length] = [maskPath.value.vertices[v][0] * pixelAspect, maskPath.value.vertices[v][1]];
    shapePathData.vertices = vertices;
    shapePathData.inTangents = maskPath.value.inTangents;
    shapePathData.outTangents = maskPath.value.outTangents;
    shapePathData.closed = maskPath.value.closed;
    shapePath.setValue(shapePathData);
    shapeLayer.transform.anchorPoint.setValue(masksLayer.transform.anchorPoint.value);
    shapeLayer.transform.position.setValue(masksLayer.transform.position.value);
    shapeLayer.transform.scale.setValue(masksLayer.transform.scale.value);
    if (masksLayer.threeDLayer)
    shapeLayer.threeDLayer = true;
    shapeLayer.transform.xRotation.setValue(masksLayer.transform.xRotation.value);
    shapeLayer.transform.yRotation.setValue(masksLayer.transform.yRotation.value);
    shapeLayer.transform.zRotation.setValue(masksLayer.transform.zRotation.value);
    shapeLayer.transform.orientation.setValue(masksLayer.transform.orientation.value);
    else
    shapeLayer.transform.rotation.setValue(masksLayer.transform.rotation.value);
    shapeLayer.transform.opacity.setValue(masksLayer.transform.opacity.value);
    // Match the mask layer's transfor
    // Mute the mask layer
    masksLayer.enabled = false;
    app.endUndoGroup();

  • Mask Shape to Path Issue

    So, I'm probably doing something stupid, but here goes.
    I imported a Null, and drew a shape with the pen tool.  Then, I clicked mask shape and copied it.  Finally, I pasted it on the Null's position.
    So, what happens is that both the original mask shape and the path then shift in different directions, neither of which are where I originally drew the shape.
    I tried this on when everything was 2D and when everything was 3D, but I can't get it to work right.
    Any thoughts?  Thanks.

    Your work flow is fouled up because you are expecting to have the mask on a layer stay put while the layer position is changed.
    Try drawing your mask path on a solid that is the same size as the comp and make sure that the scale is set to 100%. Then:
    Set a single keyframe for the mask path by holding doen the Alt/Option key and pressing M
    Copy that keyframe
    Set a single keyframe for your null by selecting the null and pressing Alt/Option + m then paste.
    The null should exactly follow the path on the solid layer.
    Turning a mask path to a position path will not work properly if the layer is scaled. Using the keyframe trick insures that you will always have success converting a mask path to a position path.
    If you copy a mask from a layer and then paste the path as position data on the same layer the mask position will change and the shape layer will move. This is normal behavior. If you want the mask path to stay in the same place in the comp you cannot move the layer without making adjustments in the Anchor Point. or use the Pan Behind tool. To make your workflow work you would have to keep the Null in the same position by adding the path data to the position and using an expression to invert the position data for the anchor point. This would defeat the movement of the null.

  • ----- Is it possible to create this mask shape effect in FCP X?

    I've been playing around with some masks in FCP X, but I cannot figure out how to create this effect..is it possible?
    I am interested in creating a mask shape where I can use it to identify something on the screen inside the shape with the surrounding area darker.
    In FCP 6/7, I used to just add a slug on top of the clip, add a mask shape, tweak it, invert it and lower the opacity.
    Any thoughts?
    Thank you.

    AppleUsur wrote:
    …  I am interested in creating a mask shape where I can use it to identify something on the screen inside the shape with the surrounding area darker.
    in FCPX no masks nor additional tracks needed:
    select the clip
    in the Info board, select the Color Correction
    there's a built-in Mask tool - select that
    switch on the Color Board, here comes the trick: …
    you are allowed to select WHERE the correction is applied: inside or outside the mask
    (in my German interface Innen/Außen)
    drag down the general exposure
    there are handles to define size, shape, position
    you can drag the outer circle (no handles) to define blurr gradient
    you can even animate that highlight by key-framing it ....
    with the same tool, you can e.g. apply super-fast some simple 'grading' such a 'CSI Miami-style Blue Sky':

  • Mask shape

    hi....
    i've been trying to apply the mask shape filter to a couple of clips. before i rendering, i have the effect i want (correct shape and size of the mask), in my canvas window. after rendering, when i play the clip, it's totally black. this effect has worked fine up until today. can anyone help me to figure out what's going on here? thanks.

    i don't have real-time previews.......processor too slow. but i can see it frame by frame in the canvas window before it renders and it looks perfect. and no, i had only applied that one filter, so there was no issue of inversion. this is happening with any clip i try the filter on. thanks

  • Mask Shape and Mask Feather Matte Bug in 5.1.1

    Take a 2160x1620 picture. Add the mask shape filter. Use the square, but happens on any of the shapes. Center the mask over say the face of a person. Render, notice that the mask has shifted to the left 10 to 20 percent. (1/4 inch or so)
    Add the mask feather, set the feather to any value so you see a nice feather. Render, notice that the feather is gone.
    Anyone care to confirm this for me? I have reported this to Apple feedback. Worked in 5.04 just fine.
    FYI - I use 2160x1620 so that when I enlarge the picture from 33% up to 100% (tripple the size for panning) i get really good quality.
    Thanks,
    Bob

    Update - it is related to the 2160x1620. If I export a still, which ends up as 720x480, and reimport, then add the mask shape and mask feather, after render it looks like it should, no movement in the masks.
    So I guess that is the workaround for now on the pictures I want to use the mask shape filter. Hopefully the developers will add this to their bug fixes.
    bob

  • Subject : Slideshow looks bad  Hello guys  I have a project in my Final Cut just about done.  I want to add my slideshow as part of the project and burn it to DVD.  In my slideshow, there are some stills from the movie clips and some downloaded from the i

    Subject : Slideshow looks bad
    Hello guys
    I have a project in my Final Cut just about done.  I want to add my slideshow as part ofthe project and burn it to DVD.  Inmy slideshow, there are some stills from the movie clips and some downloadedfrom the internet but they all look blur when playback and even worse if Iapply Ken Burn to it.   Pleasesome one can tell my how to do it right or it can’t be done because thedownload quality and stills from the clip are not suitable or slideshow.  Thank you
    PSC

    Thank you Ross.
    The entire DVD containing Quick Time movies (Final CutExpress project) and slideshow was done in iPhoto.  The Final Cut project was rendered prior to export to QT,  the slideshow was sent to iDVD withoutrendering. The slideshow with most of the pictures from my still camera incombination with stills from movie clips and some downloaded from the Internet.After burning, the movie playback is perfect but the slideshow is not.  The slideshow containing 3 differentkinds of pictures; those from my still camera looks OK; the stills from themovie clips and from the Internet are not.  I don’t have much knowledge in this game, but I think NTSCwith frame size 720x480, and the downloaded picture Item Property shows most ofthem are between 400 to 500 x 300 to 600, may be both of them are not suitablefor TV screen while the stills from my still camera looks OK because they are2048x1536.  Please enlightenme.  Once again, thank you so much,I really appreciate the time you offered.
    psc

  • Can I shrink the size of a form text box based on the content?

    We are helping a customer migrate from some MS Word forms to use pdf forms.  We are screenscraping the data from an AS400 green screen system and populating these new pdf forms with data.  however some of the text boxes are in the middle of a sentence and the text box needs to be large enough to fit 50 characters but there are many times when the data we are entering is much less than 50.  The resulting document looks very strange with all of that extra white space in the middle of a sentence due to the size of the text box.
    So can we somehow shrink the size of the text box to fit the number of characters in the box?
    I considered making the box smaller and setting the font size to auto but I think that would look even more strange to have a word with smaller font in the middle of a sentence.
    Thanks,
    Trent

    Sorry, I should have mentioned I am using acrobat professional 9.  I see that I can change the size of the text field when I am designing the form but what I don't see is how to dynamically change the size of the text field based on what data is put inside it.
    Thanks,

  • 13 x 19 print is incorrect size from InDesign or from pdf.

    For the life of me, I can't get my 13 x 19 print to be the correct size from InDesign or from pdf with Canon Pixma mark 2 9000. Paper size is correct in InDesign, Presets are correct, but without fail, it shrinks my pages by about 10-15% .... driving me crazy, I have no idea why this is happening all of a sudden after changing computers.
    Using Mac OS X
    InDesign CC
    Printing straight form CC nor straight from Canon printer; same wrong size results even through everything is set correctly.
    The InDesign print dialogue box does not show the CC presets.
    Print preview with image no longer appears.
    The only clue I can find: when I print from Acrobat, and under the print dialoge, it has the option to "choose paper source by pdf page size". when I click on this, it actually shows that the page size is smaller than what it actually is... and prints it according to this, even though, I DID NOT click on this option.
    Ideas??

    weex,
    Even though you believe you have the settings correct, I suspect you don't.  It would bebetter to have more info but what is the image size on the screen?  If you have 'maintain size' selected it will decide what size to print for instance.  What paper type are you using as some paper will not allow you to print to the edges.  Even though you may not have color out that far.
    EOS 1Ds Mk III, EOS 1D Mk IV, EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 85mm f1.2 L II USM, EF 70-200mm f2.8 L IS II,
    Sigma 120-300mm f2.8 EX APO, Photoshop CS6, ACR 9, Lightroom 6

  • To shrink the size of TEMP tablespace

    Dear all,
    There is a databse with RAC, now in OEM the size of TEMP tablespace has been reached at 99.9%. now we want to shrink the size of TEMP tablespace.
    how to we do that???????
    plz help me...........

    Temporary tablespaces usually show they are full, however this space is not actually in use. It is rather allocated. Oracle has evaluated the best way to obtain the most of performance, and he said it is better to allocate once than allocate-deallocate-reallocate extents, so temporary space is not 'released'.
    If you want to feel psychologically more confortable with lower allocated space, you can drop your tablespace (create an interim default temporary tablespace first) and recreate it.
    You can also rebuild temporary datafiles:
    alter tablespace temp add tempfile 'C:\ORACLE\ORACLEXE\ORADATA\XE\TEMP01.dbf' size 32m;
    SQL> select name from v$tempfile;
    NAME
    C:\ORACLE\ORACLEXE\ORADATA\XE\TEMP.DBF
    C:\ORACLE\ORACLEXE\ORADATA\XE\TEMP01.DBF
    SQL> alter database tempfile 'C:\ORACLE\ORACLEXE\ORADATA\XE\TEMP01.DBF' drop including datafiles;
    Database altered.

  • Creating custom mask shape

    I want to create a custom mask shape different from the ones supplied in FCP2.
    Ive been racking my brain on how to do this. I use CS3 Photoshop and Illustrator.
    In illustrator I created the shape I want, a tight round cornered rectangle in black then sent to Photoshop. place it on a new layer (layer 2) and made the first layer transparent, but the outside of the frame is still visable when I rescale the file in FCP....what am I doing wrong?
    Thanks in advance..

    Hi Allister,
    The mask you create in Photoshop needs to be either black and white or have an alpha channel.
    When you import that into FCP you need to have
    - background on track 1
    - your mask on track 2
    - foreground on track 3
    then select your foreground and choose composite mode> travelling matte alpha if you want to key where your alpha is or travelling matte luma if your image is black and white.
    If you're sizing your mask down you may need to crop your foreground so you don't get edges.
    Dual 1Ghz G4 Quicksilver   Mac OS X (10.4.7)  

Maybe you are looking for

  • MAC OS 10.9   some users cannot print to new Ricoh MP C6502   print job is holding for authentication and cannot figure out why

    I have a few IMAC and G5 users who have OS10.9 who cannot print to a new Richoh MP C6502, I downloaded and installed the new PS driver and it works on some systems but I have 3 people that goes right to Hold for Authentication.   I tried deleting eve

  • Reading an image in byte form

    hii guys i m trying to read an image and convert it to byte array and later to do some change in that byte array and later recreate a new image. For that i m using FileInputStream and FileOutputStream and its read and write methods but now i dont kno

  • Source selection is empty due to inverse mapping

    Hi Experts, When execute data collection task, one of Cons unit got the below error. "Source selection is empty due to inverse mapping" Message no. UCT8250. I checked BI mapping rules and also compare mapping rules in LDS with other cons unit.  There

  • Translator Error No .dat file

    I know this question has been asked a thousand times on here but I have a new twist to the problem.  I don't have a .dat file in my configuration folder. I have looked through every folder in the dreamweaver folder and I don't have a .dat file. I hav

  • While i m starting node manager in weblogic

    Dear All, my weblogic server was working fine after restarted the windows server, when i am trying to start the node manager i m getting below error, please guide me please, this is production <Sep 22, 2013 12:58:07 AM> <WARNING> <There was a problem