How to make BW mov to be alpha?

newbie here, and might be very simple question... but I can't seem to find answer here..
I have CG artist render me plain black and white mov (not pre-multiplied alpha).
I want to use the mov as alpha for other mov so I can mask out moving object.
How can I make the BW mov as being alpha?

Use the SwitchMatte node to copy a channel from the b&w movie
into the alpha channel of the other movie.

Similar Messages

  • How to make it move correctly?

    I made a simple Flex application. There is a helicopter which
    will move to points that user clicks in the canvas. For example, it
    is at A point. When I click at B point, the helicopter will move to
    B. Then it will move to C when I click at C.
    However, the problem arises when I click at B, C, D
    continuously. It moved from A to B. However, I don't think it moved
    from B to C. Maybe it moved from B' to C.
    Please tell me how to make it move correctly.
    [CODE]
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import flash.events.Event;
    import mx.controls.Alert;
    [Embed(source="library.swf", symbol="Helicopter")]
    public var MayBay:Class;
    [Bindable]
    public var xF:Number;
    [Bindable]
    public var xT:Number;
    [Bindable]
    public var yF:Number;
    [Bindable]
    public var yT:Number;
    public function onCanvasClick(event:Event):void
    var x:Number= myCanvas.mouseX;
    var y:Number= myCanvas.mouseY;
    var oX:Number=h1.x;
    var oY:Number=h1.y;
    xF=oX;
    yF=oY;
    xT=x;
    yT=y;
    MoveEffect.play();
    // Alert.show("x="+x+" y="+y+" xOld="+oX+" yOld="+oY);
    ]]>
    </mx:Script>
    <mx:Move id="MoveEffect" target="{h1}" xFrom="{xF}"
    yFrom="{yF}" xTo="{xT}" yTo="{yT}" duration="2000" >
    </mx:Move>
    <mx:states>
    <mx:State id="NewState">
    </mx:State>
    </mx:states>
    <mx:Panel width="70%" height="50%" title="Vi du">
    <mx:Canvas click="onCanvasClick(event)" id="myCanvas"
    width="100%" height="100%" color="White">
    <mx:Image id="h1" source="{MayBay}" width="80"
    height="50">
    </mx:Image>
    </mx:Canvas>
    </mx:Panel>
    </mx:Application>
    [/CODE]

    Make clicking disabled when the helicopter is moving. So
    right after a click, disable clicking.
    There are many coding possibilities for doing so. Make your
    own, then add the code below after it:
    MoveEffect.addEventListener("effectEnd",
    callHandlerFunctionOfSomeSort);
    private function callHandlerFunctionOfSomeSort(e:Event):void
    // In this section, re-enable it using your own method.
    Good luck!

  • How to make your movie from a template in AE CS6?

    Hello,
    Firstly, I'm new to this forum and Adobe After Effects. Hence, please excuse my beginner's language.
    I recently modified a slideshow template in AE CS6. After doing all the necessary modifications in the template project, I do not know how to make a movie out of it.
    I'll appreciate your help in guiding me by providing the necessary information to create the movie.
    Waiting for a reply.
    Thanks

    JMichael wrote:
    Actually, I have to create the movie urgently and send it to a colleague.
    Ouch. That's rather like saying your thesis committee needs your paper tomorrow and, say, while we're at it, can we help you with your research?
    After Effects is huge, unbelievably deep and stupidly complicated.
    It's not that we don't WANT to help you, it's that we cannot execute the rendering commands for you nor can we make all of the rendering and output decisions for you.

  • How to make a movie of a presentation keeping audio and pictures in sync

    How can I synch slides and audio (the audios are different lengths) in a presentation and turn it into a video.
    Each slide should stay in place until the audio has finished (the audio's are slightly different lengths).
    I've tried using a free trial of "Adobe Presenter" but I couldn't seem to make a movie of my presentation.
    I will consider purchasing the software that will do this for me as I have  a few presentations I want to make and convert to movie format for my colleagues to watch (this is to help in a teaching environment).
    Is there a program that will let me match up my audios and slides in the correct order and synch them so the audios do not move beyond the slide for which they are intended? Any help much appreciated with this problem.

    Hi,
    The slide duration in presenter is automatically adjusted according to the time of the audio inserted on that slide.
    How are you inserting audio on slide ? Recording or inserting  using presenter option ?
    You cannot create a movie format like avi, mp4 etc
    But you may publish the presenttaion in the swf format which will play in a browser or a swf player. To play in the broswer you just need to have Adobe Flash Player installed on your system. It will play like a movie in the broswer.
    Let me know if you need some more help
    Thanks,
    Alpi Agarwal
    Adobe Presenter Engineering Team

  • How to make the Internal numbering as Alpha-Numeric

    Hi,
    In the Document Info Record, the Internal numbering is always numeric.
    How to make it Alpha-Numeric?
    Regards,
    Shashi

    Dear Shashidhar,
    Number assignment is derived from Document Type of the DIR. You can customise the Document type settings (DC10) to make the number range as External or Mixed.
    Modify the settings in "Number Assgmt" tab as 2 for only external number assignement and 3 for mixed number assignment.
    Hope this solves your question.
    Regards,
    Sudharshan

  • How to make a movie from an audio file and 1 static image?

    Hi,
    I want to make a movie that it is basically an 8 minutes audio file and I want to have a background picture that is static and stays there during the whole 8 minutes of my audio.
    How can I do that?
    I'm able to add the audio and the picture, however I can't stretch the picture to 8 minutes.
    My iMovie version is 5.0.2
    Thanks,
    Martin

    Hi mcanovas - Simply duplicate the picture as many times as needed. In the Photos pane you can extend the pic to 30 seconds, so duplicate that 16 times and there you go!
    I hope the audience will stay focused

  • How to make my movie clip move slowly towards right after a few seconds?

    Hi,
    I have the following code which will bring my Banner_mc onto the middle of my Introduction page with some effects. Now, I want this movie clip to wait for a while and then move to right until it disappear with the same effects. How can I do that?
    var BannerFadeTween:Tween=new Tween(Banner_mc, "alpha", Strong.easeOut, 0 , 1, 6, true);
    var BannerRotateTween:Tween=new Tween(Banner_mc, "rotation", Strong.easeOut, 360 , 0, 6, true);
    var BannerXTween:Tween=new Tween(Banner_mc, "x", Strong.easeOut, -300 , 500, 6, true);
    var BannerYTween:Tween=new Tween(Banner_mc, "y", Strong.easeOut, -125 , 300, 6, true);
    Thanks in advance for any help in this regard.

    Hi,
    Thanks for the reply. I wnat to make one thing clear that I am using my project SWF file on computer which doesn't have any internet connection. The other thing I can't find link for downloading the plug-ins.
    When I tried to download the file from the below link, I saw the following page:
    http://www.greensock.com/club/
    Please provide the download link for greensock TweenLite & TweenMax. Thanks.

  • CAN'T figure out how to make/edit movies in QuickTime Pro...

    I can't seem to figure out how to creat and edit movies in Quicktime Pro. I would do this in windows movie maker as its sooo simple, but it doesn't save in a format that works on a mac computer (I'm emailing the video to someone who uses a mac!). And, I can't seem to find a program that is as easy to use as Windows Movie Maker...PLEASE help me, I really NEED to get this movie in a format to work on a Mac! I'm at a total loss as to what to do! And I can't seem to find a tutorial, either!
    =( Kourtney

    First of all, Quicktime is not really an "editing" program in the traditional sense. If you are expecting to really edit in QT Pro, you will be disappointed. Yes, you can actually import video directly into QT Pro and edit it, but the functions will be limited to roughly selecting chunks of video and deleting them, and you won't have frame-accurate control like other real editing programs. But lets start at the beginning: 1) Your post does not give enough information to anyone for them to help you. Where are the videos coming from that you want to edit? Camcorder? Digital camera that takes MPEG movies? VHS or DVDs? 2) The answer to #1 will be the clue as whether you are plugging a USB device or a Firewire device into the computer. Once this is determined, then instructions will vary as to how you go about editing. 3) I'm not sure if you are using QT Pro on a PC or a Mac. If you have a Mac, why don't you use the built-in video editing program that came with your computer? It's called iMovie? Quicktime can convert some video files into something that is compatible with iMovie, if they're not already. If you are using QT Pro on a PC, then I'm a little unfamilar as if it works exactly the same between between a Mac and PC. Seeing that you come from the PC side of the Universe, I'd bet that you are trying to plug in and use a USB device. On a Mac, QT Pro can record video directly from a camcorder, but it needs to be connected via Firewire. Otherwise for something transferred via USB, you most likely have an MPEG file. QT Pro can open this, but again, the editing will be very rough as QT is not a refined edit program.
    Message was edited by: Daniel Filice
    Message was edited by: Daniel Filice

  • How to make a movie of the Screen

    In OS 9 I was able to make a QuickTime of the screen while I was drawing in Photoshop. But that was a long time ago. How does it work in OS X Tiger. My old mac had a microphone. My new G5 imac does not.

    You can still capture a screen in OS X. It saves your captures as .png image files to your Desktop.
    Command-Shift-3 will capture all your see. Command-Shift-4 will turn your mouse into cross-hairs that you drag across any area. And a click on the spacebar (after the above keyboard commands) will turn your cursor into a camera icon that can capture individual windows. Still free.
    Snapz Pro allows you to capture (as QuickTime video) anything in its window. It continues to capture until you close it.
    One of my "movies" made with it:
    http://homepage.mac.com/kkirkster/mycareerfuture/
    Only 1.3MB's and it "plays" full screen.

  • How to make first movie un-skipable

    Is there a way to make the first movie (the on all the way to the left) non skipable? Is so, how?
    Thanks!

    If you put a video in the autoplay well (box on the left in the map view), it will automatically play when the DVD is inserted in a DVD player and can not be skipped.

  • How to make a movie start automatically and loop continuously

    Hi there,
    Two beginner questions here for a kind helpful person out there. I have searched the Encore help option but the answers all refer to menu options.
    I have exported a simple movie from Premiere into Encore. There is no menu. It if for a museum and the client wants to simply insert the DVD and for it to launch itself and then play on a continuous loop. They don't want any interactivity.
    So, my question is how do I apply a simple, 'on insert - play' rule and 'on end - go back to beginning and play' so that this happens automatically?
    Thanks in advance for any help.
    M

    Hi peachespeaches,
    rightfully, at the Menu>properties>Motion>just make sure the "Loop #:" stated "Forever" and your "Loop Point" and "Duration" will automatically adjusted when you insert the movie clip on the background of your Menu. I'm using a CS5 Encore... Trying out for very long time yet couldn't achieve it... However, I use to do it on Encore 1.5, no problem at all, it works! Just don't know why it doesn't on CS5 Encore... I'm suspecting that the software I'm holding might have some problem? Hope you are using CS5 Encore also, could you try on and let me know if it works on your side?
    Jaze,
    [email protected]

  • How to make a movie clip button into a url link?

    Hello,
    I'm kinda new to using Flash and am trying to edit a template for a friend of mine, the problem is I'm trying to add a url link to the buttons. I tried adding this action to the button
    on(release){
    getURL(http://www.yoururl.com.);
    I saved as swf & got this error msg in the compiler errors: Symbol=but1,layer 4, frame=1 Mouse events are only for button instances
    In the library I checked the properties of the button and its a movies clip, I'm not sure if it will make any difference if I change to button or graphic?
    I would like to upload the fla and swf files but this forum doesn't seem to allow me to attach files to messages.
    Does anyone know how to do this? Any help is greatly appreciated.
    http://jaedenyoo.com

    Unfortunately that doesn't seem to be the problem, I checked and
    in my flash file its typed correctly.

  • How to make quicktime movie export interactive.

    I've keynote 09 presentation that has images and videos inserted into it. I need to share this people across on internet. I've created quicktime .mov file for this. My file size comes roughly around 500MB. Everything is fine, only problem I see is when I play quicktime file on my mac mini it is interactive, so I click on mouse and it moves to next text or next slide. Whereas same file when I run on my Windows 7 machine it just keeps flying thru it without any interaction from user. Same thing happesn when I try to play quicktime file uploaded on vimeo or smugmug.com, file just flies thru all slides without any user interaction.
    Is there a way where I can make my slideshow to be interactive ?
    thanks
    -mj

    The problem probably is because you are opening the QT movie with Windows Media Player
    Solution
    Download Quicktime player to your windows 7 PC
    Then right click the QT movie you made from keynote and select 'open with'
    Then select quicktime (the QT player downloaded)
    Hope that helps

  • How to make one movie from different imovie files?

    I have 12 imovie files that I am trying to put together as one movie with 12 chapter markers.
    How do I do that?
    Thanks.

    ...import all 12 movies in it and mark the chapters...
    very hard to imagine a less space consuming way...
    you can drop the movies directly into iDVD…
    you get a videoDVD with 2x6 (I wouldn't place 12 chapters on a single menu) "chapters"...

  • How to make graphics move fluidly around screen?

    hi,
    I'm making a simple space invaders game using JPanel and have so far made the ship and aliens move around the screen (the aliens move automatically, the ship requires key presses).
    The ship and aliens are currently simple java 2D shapes and I've used AffineTransform to move them. The problem is the movements aren't fluid. Can someone give me some pointers (possibly some simple code) to make the various objects move fluidly.
    Thanks

    Don't transform them just move them

Maybe you are looking for

  • Switching from Windows to Mac

    Here's my situation: I own CS 5.0 Design Premium. I run it on a PC. I want to switch to my new Mac. Adobe Support told me that I cannot move CS5.0 from PC to Mac. They said I have to buy the upgrade to CS5.5 and specify the Mac as my target OS. The u

  • Can't do search in Apple Mail

    I have installed the update to fix Mail problems in Mavericks but still cannot do a search in Mail so cannot easily find specific messages.

  • Problem combining PDFs in Acrobat 9.1

    Folks, I'd appreciate some help with the following problem.  Maybe I'm simply being a nong -- always possile -- if so, please be gentle with me! I have a document that was saved with each page as a separate PDF, and I need to combine them into one --

  • Using ipad 1& component video cable to view hulu on the tv

    Bought component video cables from apple, hooked up to tv & ipad. No video from hulu. Any ideas? Have i exceeded the capability of this?

  • Getting files off zip disks??

    Anyone know how to connect an old SCSI device to my new iMac? Trying to salvage old files on zip disk. Data recovery companies charging $30/disk, would like to do myself if possible. TIA.