Basic masking and keyframe it?

I have this shot where someone passes in front of the camera. I'd like to add a line of text after this person passes but I'd like to mask and keyframe it so it looks like the text was behind this person...or almost as if it were being revealed after the person passes. Is this possible from within final cut?

Should be easy enough; you'll have to crop the text 100% in the opposite direction of your character (so if he/she is walking right, use the left crop), then go frame-by-frame and as your character passes, removing the crop so it edges up against the character in every frame. Make sense?

Similar Messages

  • Why use layer masks and adjustment layers?

    I've been using PSE and CS successfully for years.
    One thing I have never understood is: why use layer masks and adjustment layers, instead of simply creating a copy of the subject layer (the one I want to make changes to) and experimenting with that?  It's quick (Ctrl-J), I can do it as many times as I want, I'm not affecting my Background layer.  If I like the changes, I can keep them.  I can switch the copy on and off to compare with the Background layer.  I can do any type of blend or combination I desire.  I can insert Gradient layer(s), select any part of the copy and (Ctrl-J) create a new layer containing only the selected part.  I can adjust size, rotate, do anything.
    It almost seems that "layer mask" and "adjustment layer" are mainly another layer of terminology; can anyone explain (preferably in 50 words or less) how they are intrinsically different from or superior to working with copies of the Background layer?  What can be done with them that can't be done simply using copies of the Background layer?

    Here's a very basic example of the advantage of using a layer mask.
    I have this picture of a sunflower and I want to convert the background to black & white, leaving just the flower in color.  I duplicated the Background layer, converted it to B&W and proceeded to use the Eraser to uncover the flower color. But I made a mistake and erased outside the flower.  There is no way to correct this other than deleting the layer and starting again.
    Now let's use a layer mask on the B&W layer. Set the Foreground/Background colors to the defaults black/white. Using the Brush tool paint on the mask with black to reveal the color.  Here I painted too far, revealing a green leaf in the background.  No need to start over.  Simply switch to white and paint the excess to convert back to the B&W.
    Tip: while painting you can type "X" to toggle between black and white.
    You could also select the flower using the various selection tools and then fill the selection with black. If it turns out the selection was not 100% accurate you can then fine-tune the result by painting on the mask with black or white as necessary.

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

  • Hi, I need help and advice. Basically me and my ex partner both had iphones and synced it with the same computer under the same ID. We split i have a new laptop and now it keeps asking for the old ID or it'll erase my apps bought on theold account.

    Hi, I need help and advice. Basically me and my ex partner both had iphones and synced it with the same computer under the same ID. We split up and now im trying to get all my apps and info onto my new laptop with a new account but it keeps asking me for the old apple ID which she is still using and she changed the password. i tried backing it up but still nohing. When i try to back up purchased items being apps etc its keeps asking for the old one. help

    See Recover your iTunes library from your iPod or iOS device. But you'll still need the password.
    Once you have the computer authorized to use the account she could change the password again to stop you buying apps on her card (assuming it's not on yours!). It would lock you out of upgrading them too but they should work unless she uses the deathorize all feature.
    It depends on how amicable the split is...
    tt2

  • CS6 problem. When I open the Mask panel, it takes up the entire screen width and the Looks controls disappear, Also, there is a new panel below the Mask panel that seems to have no purpose that I can find. The documentation says "Mask and Look panels - Th

    CS6 problem. When I open the Mask panel, it takes up the entire screen width and the Looks controls disappear, Also, there is a new panel below the Mask panel that seems to have no purpose that I can find. The documentation says "Mask and Look panels - The Mask panel is now placed next to the Look panel. WIth the masking and grading tools placed side-by-side, you can now work faster on the mask workflow." Is there a way to move, hide, or otherwise manipulate the panels for a custom layout? All the examples I can find on the Web show the Looks panel to the left of the Mask panel where the controls are available.

    Ok, here is what I have so far. Appdelete the iWork and reinstalled. Pages and Number work, but not Keynote.
    Now, I downloaded a couple apps that I need, and no matter what I did, the spinning ball came up and the download stopped till it unlocked itself. It is really frustrating because the download was not completed and whatever came through would not mount. Could this issue be the internet connection? Permission fix showed a lot of Airport issues. I will try to run permissions fix again.

  • I have a new mac book pro (sept 2014) and am suddenly stuck on the log-in screen. Keyboard input not working to enter my password. Already tried a basic restart and a cmmnd/ cntrl/ pwr troubleshoot to no effect.

    I have a new mac book pro (sept 2014) and am suddenly stuck on the log-in screen. Keyboard input is not working to enter my password. Seems to be a log in issue as keyboard works for forced troubleshooting. (And b/c when I first noticed the problem, I was able to enter my log in password but then everything sort of froze. Now, no ability to enter the password.) Already tried a basic restart and a cmmnd/ cntrl/ pwr troubleshoot to no effect.

    Reset PRAM:   http://support.apple.com/kb/PH14222
    Start up in Safe Mode.
    http://support.apple.com/kb/ph14204
    A new Mac is in warranty for 1 year from the date of purchase.
    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Call AppleCare or take it to the Apple store to have it checked out.
    Genius Bar reservation
    http://www.apple.com/retail/geniusbar/
    Best.

  • ¿How can I edit a Photo without mask and remain without mask?, ¿How can I edit a Photo without mask and remain without mask?

    I want to edit an .png or .jpg image which has no mask and, once edited, that image could remain without mask.
    ¿Is it possible to do this with iPhoto and how?
    Thanks and regards.

    iPhoto has no layering or masking. For that kind of work use an external editor:
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate or the App Store.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • Difference between Basic Component and Standard Component

    Hi Iam just learning JSF, at the same time I try to learn to use Sun Java Studio Creator at the same time. May I know what is the difference between the Basic component and the Standard component in the IDE.
    I have been using the Grid Panel, each time I need a header I manually t ype
    <f:facet name="header">
    </f:facet>
    in the JSP source code. How can I do this visually?
    Thanks,
    james

    The Standard section in the Palette contains the JavaServer Faces reference implementation components. The IDE provides the standard components for backwards compatibility with projects that were built with earlier versions of the IDE. Because the standard components provide less functionality and require more programming, you should use the visual components from the other Palette sections.
    I do not know the answer to your second question.
    Chris

  • I installed plugins Vertus Fluid Mask and Imagenomic Portraiture but I do not see it under the filters tab like I do in CS3.  How do I access it through Photoshop CC.

    I installed plugins Vertus Fluid Mask and Imagenomic Portraiture but I do not see it under the filters tab like I do in CS3.  How do I access it through Photoshop CC?

    Good day!
    Have you installed the Photoshop-version-appropriate versions of the plug-ins?
    Regards,
    Pfaffenbichler

  • Basic Start and Finish Date coming as default while Order Creation (IW31)

    Hi Members,
    I am in situation where in i am trying to cretae an order from IW31 but after the order creation basic start and basic finish date is being updated as default date which is the current date of creation.
    I have written my code in Include LCOINFNJ where basic start and basic finish date should get populated as per my written code .After debugging i found that the code is populating the dates in structure CAUFVD-GSTRP(basic start date)  and
    CAUFVD-GLTRP(basic end date) but whill posting at user command  SAVE the fields are getting updated back to default dates.
    Even after adding an enhancement point at the end of below given FM where in i am hardcoding the values still the issue remains the same .
    Function Module : CO_ZV_ORDER_POST is the FM responsible for posting.
    Please help regarding this issue .  
    Thanks and Regards.
    Gaurav Chopra

    Hi ,
          If you do not want start and finish date as current date then u can do it via config
    spro ->pm -->maintenance order processing -->Maintenance and service orders -->general data -->Activate default date for current date as basic date  here for a particular plant remove the tick mark in default current date , thus when u create MO on that plant then u will not get any default dates in basic start date and finish date ...
    regrds
    pushpa

  • "Something is wrong with Plug-in SS Masks and Composing" ???

    Whenever i start up iMovie is get a prompt that reads "Something is wrong with Plug-in SS Masks and Composing". What does this mean and how can i fix it?
    Thanks,
    Bryan

    ... where can i look to see what plug-ins i have? ...
    in Finder click thru..:
    user(the house)/library/iMovie/plug-ins...
    when iM is quit, drag the plug-ins to some other place...

  • What kind of mac would I need for Nexflix, basic search and email? Also, sounds silly, but can I connect an HDMI from Mac to tv?

    What kind of mac would I need for Nexflix, basic search and email? Also, sounds silly, but can I connect an HDMI from Mac to tv?

    Just an FYI.  The Macs named PowerMac date from early 2006 and before.  Use this tip to discover where to post once you get your Mac:
    Site map of Communities and Categories
    The cheapest Mac available new is a Mac Mini.   It is no bigger than many an external hard drive.  But the screen and keyboard and mouse must be purchased separately.  They support USB and Bluetooth keyboards and mice, and pretty much any DVI, HDMI, or displayport display.   Although the iMac is certainly an attractive option if all you want to deal with is deciding on a printer.   I still recommend getting an Apple USB keyboard for the occasional times you may need to troubleshoot startup issues.  Normally not a problem, but as it gets older some issues can be fixed at startup or diagnosed at startup.

  • PSE 5--what is a clipping mask and how does it work?

    Can anyone explain what a clipping mask is, how it works, and most importantly if Photoshop Elements 5.0 has this capability?
    Also, are there any tutorials out there that I can teach myself on this topic? I am trying to mimic a layout explained in digital scrapbooking magazine and this technique is used.
    Thank you!
    Heather

    Heather,
    You can find one explanation at Janee's tutorials: http://www.myjanee.com/tuts/elements/elemask.htm
    Since PSE does not support layer masks per se, the clipping group simulates a layer mask and hence Janee's name for it, "elemask" (cute, huh?)
    Here are 2 examples:
    In this example I wanted to blur the background leaving the flower in focus:
    http://www.pixentral.com/show.php?picture=1euavV1sDqzrEqqqierfc5dSEH9yI01
    1. Duplicate the Background layer and apply a Gaussian blur to the new layer.
    2. Add an adjustment layer below the blur layer (any kind of adjustment layer will do), but do not make any adjustment - just click OK.\
    3. Group the blur layer with the adjustment layer. On the adjustment layer paint the subject with black
    to mask out the blur, paint with white to restore the blur.
    Of course you can use other tools on the adjustment layer besides the paint brush, e.g., make a selection and fill with the black or white. In some cases it might be easier to first fill the adjustment layer with black and then paint with white.
    In this example (not actually a mask but still demonstrates a clipping group) I wanted to crop the picture into a leaf shape.
    http://www.pixentral.com/show.php?picture=1ys9Z7FspSwF8HHKGLrxjGVhbTodmF0
    1. Use the leaf from the Custom Shape tool to draw out the leaf, creating a new layer.
    2. Move the leaf layer below the picture layer.
    3. Group the two layers.
    Note that in order to move a layer below the Background layer you have to rename the Background layer to anything else (layer 0 in my example).

  • Color correction filter and keyframes

    After lots of projects in FCE, I should know this!
    I have a clip with a color correction filter and keyframes at either end of the clip.
    Question: If I break the clip in two, am I correct that the color correction filter and keyframes are no longer shared by the two clips? Changes made to one clip's keyframes no longer effect the other clip's color correction settings?

    That's correct.

  • TDS certificate not showing Basic, surcharge and education cess separately

    Hi
    i created three codes as basic, surcharge and for education cess. I have also mantained the J_1IEWT_SURC table and J_1IEWTSURC. But i am getting error in mantaining table J_1IEWTECESS as View/table J_1IEWTECESS can only be displayed and maintained with restrictions.
    Please suggest me how to mantain  J_1IEWTECESS table.
    Surender Kumar

    Hi
    Please maintain as follows:-
    1) spro-> Financial Accounting Global Settings (New) -> Extended Withholding Tax -> Calculation ->India -> Surcharges -> Maintain Surcharge Calculation Methods - check box should blank
    2) spro-> Financial Accounting Global Settings (New) -> Extended Withholding Tax -> Calculation ->India -> Surcharges ->Maintain Surcharge Tax Codes (Separate Tax Codes) - This place should be blank
    3) spro-> Financial Accounting Global Settings (New) -> Extended Withholding Tax -> Calculation ->India -> Surcharges -> Maintain Surcharge Rates (Surcharges Combined with Basic WH Tax Codes) - At this place maintain surcharge rate e.g. 10% against each company code and tax type/tax code on which surchage applicable.
    This will resolve ur problem. In case any problem pl write back.
    Regards
    DD

Maybe you are looking for

  • Why does ical on icloud have a different lay out than on my mac

    Why does iCal on my MacBook Pro have a different lay out than on iCloud? I like the iCloud layout better, the only missing niceties is the year calendar. How do I get both iCals to look the same? The ideal iCal? The one from iCloud WITH the year cale

  • Problem installing dw cs4 on mac osx 10.5.7

    Hi, I am encountering a weird problem when trying to install dw cs4 on my macbook which runs osx 10.5.7. My user account has admin privilliges, yet when running the setup / installation file either from the disk or by downloading the trial - 2 dreamw

  • Some cumbersome task

    I am having problem with my jsp code . wat i done is as follow 1. I created a web page which simply inputs the user information like name,surname etc. 2. I am passing this information to jsp page say first_jsp.jsp 3. There i am using <jsp:useBean> an

  • Pro*C doesn't generate ansi C code

    Hi, Oracle 8.1.7 Here is my pre compile command with ANSI_C flag: proc CODE=ANSI_C SQLCHECK=SEMANTICS USERID=user/pass iname=toto oname=toto.c And here is my compile command gcc -ansi -DOS_SYSV=4 -DOS_SOLARIS -DOS_SOLARIS_2 -fPIC -g -O1 -W -Wall -Wpo

  • Changing settings for Mobile Albums?

    How do I change my setting for mobile albums from all of my photos to specific photos I select?  I initially set up by selecting all photos but want to change this. I do not want all of my photos in Elements to feel to my phone, but I do want all the