Help on adding an animation on to a live video =0]

Noob here lol
would anyone be so kind as to help guide me towards some instructional video, forum or link that will show me how create a video with a specific cartoon character onto a live recorded video like these here>>> Zangief makes Russia proud! Street Troller / Street Fighter Parody - YouTube
thats pretty much what I would like to do nothing else really
thanks for any help

Basic Workflow
The example is nothing more than an animated layer added on top of the video. If you already know the basics what are you specifically having problems with?

Similar Messages

  • Help with adding a hyperlink to a button?

    We have a simple little site we built in Catalyst and everything works great. The only problem is that we cannot figure out how to add a hyperlink to one of the buttons in the animation. We simply want to be able to click on the button and go to another site (the client's Facebook page specifically). Can anyone provide some insight? Thanks!

    The message you sent requires that you verify that you
    are a real live human being and not a spam source.
    To complete this verification, simply reply to this message and leave
    the subject line intact.
    The headers of the message sent from your address are shown below:
    From [email protected] Tue Nov 03 19:08:07 2009
    Received: from mail.sgaur.hosted.jivesoftware.com (209.46.39.252:45105)
    by host.pdgcreative.com with esmtp (Exim 4.69)
    (envelope-from <[email protected]>)
    id 1N5TPy-0001Sp-J1
    for [email protected]; Tue, 03 Nov 2009 19:08:07 -0500
    Received: from sgaurwa43p (unknown 10.137.24.44)
         by mail.sgaur.hosted.jivesoftware.com (Postfix) with ESMTP id 946C5E3018D
         for <[email protected]>; Tue,  3 Nov 2009 17:08:03 -0700 (MST)
    Date: Tue, 03 Nov 2009 17:07:49 -0700
    From: Tvoliter <[email protected]>
    Reply-To: [email protected]
    To: Matthew Pendergraff <[email protected]>
    Message-ID: <299830586.358941257293283616.JavaMail.jive@sgaurwa43p>
    Subject: Help with adding a hyperlink to a button?
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_36702_1132901390.1257293269030"
    Content-Disposition: inline
    X-Spam-Status: No, score=-3.4
    X-Spam-Score: -33
    X-Spam-Bar: ---
    X-Spam-Flag: NO

  • Adding Edge animation to my website background

    Hi
    I am stuck with adding the animation I made on Adobe Edge to my website background. My website background has an image which size is set to cover, to it scales according to browser window and has also fixed position.
    My goal is to get my animation instead of ths background image (animation is as simple as it can get). The best that I've managed was to get the animation on the page but it was not covering the browser windoe AND it pushed all the content that was supposed to be on it, away.
    My website is this: www.tihemetsamoto.ee/uus2013
    You can see that it the content is horizontally scrolling and the backgrond mage is fixed. That's what I like my animation to be, behind the content, fixed and cover the browser window on resize.
    PLEASE help me, Im stuck and don't know what to do
    The code from the animation html is here:
    <!DOCTYPE html>
    <html style="height:100%;">
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=IE8"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
        <script type="text/javascript" charset="utf-8" src="animation_edgePreload.js"></script>
        <style>
            .edgeLoad-anime { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body style="margin:0;padding:0;height:100%;">
              <div id="Stage" class="anime">
              </div>
    </body>
    </html>

    Kristina-
    There may be hope!
    In this thread:
    Hiding background animation elements that are beyond the edge stage?
    The following link was posted:
    http://sharkology.businesscatalyst.com/index.html
    I don't know for sure what they are using for a background (If you expand the browser window on their site, you will see a shark "swimming" in the background) but you might want to ask.
    I saw this in their code which made me a bit hopeful for you!
    <body id="eid_1368298992414" class="EDGE-37128740">
    Good Luck!
    James

  • Please advice on adding 3D-animation files into a PDF with Acrobat Pro DC.

    Hello,
    Where is the button animation in Acrobat Pro DC?
    Can you give me advice on adding 3D-animation files into a PDF with Acrobat Pro DC.
    I have Acrobat PRO DC .
    Thank you.

    Hi George,
    I just tried adding the files as attachments; however I didn't like doing that because it increased the file size of my PDF document quite a bit. 
    I'm not sure if you're familiar with the "Insert Object" command in MS Word, but I want to do the same thing in my PDF document...but the key is, anyone must to be able to open the embedded file from any location.
    I created an MS Word document with several embedded objects.  I was later asked to PDF the Word document, but since embedded MS Word objects do not migrate to the PDF, I am now trying to embed the same files I embedded into my Word document into my PDF document over top of the icon image.  The file types I'm trying to embed include MS Word, Excel, PowerPoint, and Adobe PDF.  Does this make more sense?  I want to create a hyperlink over top the icon image that was PDF'd from the MS Word document which allows any user to click on the link and open the separate file.

  • Help with adding image onclick

    Hey everyone,
    I am making a simple game in AS3 and need help with adding an image once they have click on something.
    On the left of the screen are sentences and on the right an image of a form. When they click each sentence on the left, writing appears on the form. Its very simple. With this said, what I would like to do is once the user click one of the sentences on the left, I would like a checkmark image to appear over the sentence so they know they have already clicked on it.
    How would I go about adding this to my code?
    var fields:Array = new Array();
    one_btn.addEventListener(MouseEvent.CLICK, onClick1a);
    one_btn.buttonMode = true;
    function onClick1a(event:MouseEvent):void
        fields.push(new one_form());
        fields[fields.length-1].x = 141;
        fields[fields.length-1].y = -85;
        this.addChild(fields[fields.length-1]);   
        one_btn.removeEventListener(MouseEvent.CLICK, onClick1a);
        one_btn.buttonMode = false;
        //gotoAndStop("one")
    two_btn.addEventListener(MouseEvent.CLICK, onClick2a);
    two_btn.buttonMode = true;
    function onClick2a(event:MouseEvent):void
        fields.push(new two_form());
        fields[fields.length-1].x = 343.25;
        fields[fields.length-1].y = -85;
        this.addChild(fields[fields.length-1]);
        two_btn.removeEventListener(MouseEvent.CLICK, onClick2a);
        two_btn.buttonMode = false;
        //gotoAndStop("two")

    I don't know where you're positioning the button that should enable/disable the checkbox but for "one_btn" let's just say it's at position: x=100, y=200. Say you'd want the checkbox to be to the left of it, so the checkbox would be displayed at: x=50, y=200. Also say you have a checkbox graphic in your library, exported for actionscript with the name "CheckBoxGraphic".
    Using your code with some sprinkles:
    // I'd turn this into a sprite but we'll use the default, MovieClip
    var _checkBox:MovieClip = new CheckBoxGraphic();
    // add to display list but hide
    _checkBox.visible = false;
    // just for optimization
    _checkBox.mouseEnabled = false;
    _checkBox.cacheAsBitmap = true;
    // adding it early so make sure the forms loaded don't overlap the
    // checkbox or it will cover it, otherwise swapping of depths is needed
    addChild(_checkBox);
    // I'll use a flag (a reference for this) to know what button is currently pushed
    var _currentButton:Object;
    one_btn.addEventListener(MouseEvent.CLICK, onClick1a);
    one_btn.buttonMode = true;
    function onClick1a(event:MouseEvent):void
         // Check if this button is currently the pressed button
         if (_currentButton == one_btn)
              // disable checkbox, remove form
              _checkBox.visible = false;
              // form should be last added to fields array, remove
              removeChild(fields[fields.length - 1]);
              fields.pop();
              // clear any reference to this button
              _currentButton = null;
         else
              // enable checkbox
              _checkBox.visible = true;
              _checkBox.x = 50;
              _checkBox.y = 200;
              // add form
              fields.push(new one_form());
              fields[fields.length-1].x = 141;
              fields[fields.length-1].y = -85;
              this.addChild(fields[fields.length-1]);
              // save this button as last clicked
              _currentButton = one_btn;
         // not sure what this is
        //gotoAndStop("one")
    I'd also centralize all the click handlers into a single handler and use the buttons name to branch on what to do, but that's a different discussion. Just see if this makes sense to you.
    The jist is a graphic of a checkbox that is a MovieClip symbol in your library exported to actionscript with the class name CheckBoxGraphic() is created and added to the display list.
    I made a variable that points itself to the last clicked button, when the "on" state is desired. If I detect the last clicked button was this button, I remove the form I added and the checkbox. If the last clicked button is not this button, I enable and position the checkbox as well as add the form.
    What is left to do is handle the sitation where multiple buttons are on the screen. When a new button is pushed it should remove anything the previous button added. This code simply demonstrates clicking the same button multiple times to toggle it "on and off".

  • I need help making Adobe Edge animation appear correctly on iphones, ipads and android phones.

    I need help making Adobe Edge animation appear correctly on iphones, ipads and android phones. It currently looks fine on desktops and androids. I am using wordpress with a responsive theme (Canvas). I will need you to document The url is http://adamhtc.org.s183459.gridserver.com.

    Thanks George, interesting thought.  I looked on Adobe's site and they "advertise" fillable forms for the iPhone and Android markets, but on the Windows Phone tab, that is mysteriously missing.  lol    Maybe it will come later?   Meanwhile, I'll google to see if there are any PDF viewers that can handle it now.   Thanks for the reply.  :-)

  • Need urgent help in adding border to a Box

    Hi folks,
    i need help in adding a border to the box which i am using in my java code.
    i have somthing like.. I am not using BorderLayout as my layout Manager. Its all Flow Layout.
    Box name;
    Box rules;
    Box combine;
    name = Box.createVerticalBox();
    // i need to add a border to this name box which i am unable to do. Please help
    rules = Box.createVerticalBox();
    // again here too i want to add a border like etched border. Cant do it
    name.add(....);
    name.add(...);
    rules.add(...);
    rules.add(..);
    combine = Box.createVerticalBox();
    //here too i want to add a border
    Please help...
    thking u.
    regds. divya

    You can use setBorder() method which Box inherits from JComponent...
    check the API for Box for further information, namely the "Methods inherited from class javax.swing.JComponent" part...
    - MaxxDmg...
    - ' He who never sleeps... '

  • For the Seaon I Added an Animated Snow Globe to my Collage Toolkit

    I  Updated my Photo Collage Toolkit for Photoshop Adding an Animated Snow Globe Action, Template and Video Demo.
    If you just want the Animated Snow Globe I created a bare bone mini package you can download.
    The SnowGlobe Zip file contains
      1.) SnowGlobe.atn - The action that drive the full process
    2.) InteractivePopulateCollage.jsx - Toolkit script used to populate the Template
    3.) Photo Collage Text Styles.asl - Text Layer style the script list
    4.) Photo Collage Styles.asl - image layer style the script list
    5.) SnowGlobe4x3.psd - Animated Photo Collage Template
    The image files used in the video demo to populate the Background and Globe images
    The demo also used the stamp Filename option th have the names stamped onto the images.
    6.) Merry Christmas 2012.jpg
    7.) Drink.png
    Drop the Action .atn file and the layer styles .asl files onto Photoshop to load them into Photoshop.
    Copy InteractivePopulateCollage.jsx into Photoshop's Presets\Scripts folder
    Video Demo: http://www.mouseprints.net/old/dpr/SnowGlobe.html
    Mini Package: http://www.mouseprints.net/old/dpr/SnowGlobe.zip
    Toolkit: http://www.mouseprints.net/old/dpr/PhotoCollageToolkit.html
    While the toolkit works with CS2 through CS6. The SnowGlobe template require CS5 or CS6 for easy moving.
    There is also a Bug in CS6 Scripting. CS6 is the buggiest version of Photoshop ever released. Adobe failed to add "Bicubic Automatic" support into Photoshop's scripting DOM. If your Photoshop "Interpolation" preference is left set to Adobe's new default setting "Bicubic Automatic" some Photoshop Scripts will fail with an internal scripting error.
    Before CS6 if you wanted to use a particular interpolation method transforming a layer you needed to change Photoshop Preference to do that. In CS6 Adobe has added an interpolation method to some forms of transform. However to use a particular interpolation method while transforming a smart object layer your still required to do this the old way. It is not possible to retrieve and restore a users Photoshop interpolation preference using Adobe's scripting DOM when the current setting is "Bicubic Automatic". The above script will fail in CS6 if your Photoshop interpolation preference is "Bicubic Automatic".

    Hi
    My first thoughts are
    • iMovie ill behaving - Trash the iMovie pref file - use to set things right
    • in reg. to Photos - Did You change iPhoto Photo Library - Then iMovie get's lost as it peeks into iPhoto on start up to see where photos are stored. Set iPhoto back to first Photo Library (when iMovie is not running) then start iMovie.
    Yours Bengt W

  • HT5622 I lost all my pictures! Please help:( I added all my photo to a new album from the camera roll and i delete the picture that already move to new album, at last all my picture was gone !:'( Please, anyway to recover back all my photo? please help :'

    I lost all my pictures! Please help:( I added all my photo to a new album from the camera roll and i delete the picture that already move to new album, at last all my picture was gone !:'( Please, anyway to recover back all my photo? please help :'( Apple Service Center or Branch can help?

    Albums is a way or sorting photos. Photos aren't moved from the Camera roll. The Camera Roll consists of all the photos on the phone. If you delete from Camera Roll they are deleted everywhere but Photo Stream.
    Are you using Photo Stream? Your photos, providing they wer recent should still be in Photo Stream. If you have Photo Stream set up on your computer they should all be there.

  • Need help with adding emoji to my hubby's phone don't see it when I click on the keyboard tab

    I need help with adding emoji to my hubby's iPhone when I go to settings then the keyboard tab it's not there

    I did that bad it's not there and doesn't give me to option to click on it

  • Help, need to identify animation

    i need help to identity this animation, its on flash player,
    i saw it on myspace, so i wanted it, but i dont know how to find
    it, please help me, i want to know the link direct to put on
    myspace or the link online, or the name, its like a refrigerator
    magnet message thing, thanks
    click
    here for picture

    Hi Jelina,
    Try this:
    Table name: AGR_HIER
    Filed Name: Unique ID
    In the filed search the table entries by providing the target name like 
    *cube001*
    This would probably work if the qury naming is done with target name in it ( if the target name is there in the query technical name).
    All the best.
    Pratap Sone

  • Help how do you save a still frame of video  as a photo?

    Help how do you save a still frame of video as a photo? Thanks

    A still frame from an Event:
    Put cursor at the frame you want, then right click (or command click) and select "Add Still Frame to Project".
    The still frame will be added at the end of the Project.
    A still frame from a Project:
    Put cursor at the frame you want then right-click (or control-click) and select "Add Freeze Frame". The Freeze frame will be added after the clip.
    In both cases:
    Select the still frame (so the yellow band is around it).
    Right-click (or control-click) and select "Reveal in Finder".
    You will see a JPG file highlighted in the finder.
    Drag this file and drop it on your iPhoto icon in the Dock.

  • Overlay live video feed with flash animation

    I am using a webcam to allow people see themselves on a screen.  I would like to overlay the video with some flash animation (simple graphics of planes, cars etc.) going across the screen.
    How do I achieve this?

    Hi IEC,
    Having just finished an app that has two ROI overlay layers ontop of a
    static image, I might be able to give you some ideas. All of the below
    assumes that you know basic Labview programming.
    - I have not used IMAQ yet, and so am not sure what front panel control
    type will render the live video images. But, I'm not sure that matters.
    - If you can place an XY Graph over your video display on the front panel then we have it made
    - stretch the size of the XY Graph so that the plot area matches the size and placement of your video image panel
    - make the plot area of the XY graph transparent.
    - you can also make the border of the XY graph transparent
    - if you want a scale for your video then use the scale of the XY Graph to show the scale of your video images
    - then it's just a matter of defining the XY points of the ROIs that you want to plot on the XY Graph
    - if you want multiple ROIs then each can be a different color by making them different channels to the XY Graph
    - if you just want a few straight lines, and want to be able to move
    the lines around in realtime then you can get a little fancier:
           - turn on the cursor legend for the XY Graph
           - create two cursors for each line that
    you need (a start point cursor, and an end point cursor)
           - set the color and cursor style as desired
           - in your main loop:
                     - use the XY Graph "crsr list" property to get the XY positions of the various cursors
          - those cursor XY positions become
    points of line segments fed to the XY Graph to plot (draws a line
    between the cursors)
           - In realtime, as you move the cursors, the line segments move accordingly
    In my particular app I had to provide a mechanism for the user to
    create ovals, rectangles, polygons and freehand ROIs. Then I also
    needed mechanisms to rotate, pan or expand/compress the ROIs. This is a
    bit more challenging, but very do-able.
    Hope that helps,
    RMP

  • How can I combine animation from Flash with a video from Photoshop to make a movie?

    I have a project that's due tomorrow. I had to create a motion tween and animation and record a video to put in it, which I have done both already. My question here is, how can I combine my animation from flash and my video from Photoshop to make it into one movie?

    No, I am saying that this isn't the forum for help with that. This forum is for Firefox user support, and the helpers in this forum aren't versed in development issues like that - we're volunteers, not Mozilla developers and don't work for Mozilla. You are better off asking about that in a forum where other web site developers do support.

  • Captivate 7: Need help to diagnose background audio which increases suddenly mid-video.

    http://www.youtube.com/watch?v=6hQ1GJpVQNU
    I inserted a music file into the video background.  At 1:39 you'll hear the background music suddenly jump up in volume. 
    When I imported the audio file to the background, I edited it by adjusting the volume.  The volume was reduced appropriately in the preview, however, as you can hear, it jumps significantly.  There is nothing I can see either in the audio file - or in the other elements that may cause this.
    I've tried deleting and re-importing and changing the volume using the  threshhold/ ratio settings (versus just the volume bar), but nothing changes that jump. 
    Any help is appreciated!

    Thanks for considering the problem! Unfortunately, as I stated above, the voiceover needs to be a background audio file that plays throughout the project. It's not possible to record audio-per-slide because of the structure of the video - and because I do a lot of editing of the audio files for 8-minute videos.
    FYI - I was able to have a chat conversation with a support tech. Here is the transcript of that chat:
    Anvinder: We have not tested the workflow of captivate 7 with yosemite so far.
    Anvinder: You might find some inconsistencies.
    AMANDA: So, is there no solution to this error?
    AMANDA: Do I need to publish the entire project every single time I make a small change?
    AMANDA: Has Captivate 8 shown this error in Yosemite?
    Anvinder: In order to make the changes evident in the output  you need to publish the whole output.
    Anvinder: Amanda, the best practice is to publish the whole project.We are in testing phase for the same. You can download the trial version of captivate 8 and work on it on yosemite.
    If you have a suggestion for a better workflow for creating tutorial videos (ultimately published to YouTube) that need to include the following, please share!
    a voiceover
    heavily animated explanations of concepts
    live screen capture of business processes in software
    Thanks!

Maybe you are looking for

  • Nokia E7 switch offed auto and now can not on...

    Nokia E7 switch off auto and now can not on...  also it not charging ... what is the problm .. ?? please give me some solution for this ... ASAP... 

  • Has anyone managed to program a Wago 750-650 module attached to a Wago 750-341/841 controller

    Hi, I'm planning to use 2 Wago 750-650 modules (serial to ethernet converter) attached to either a Wago 750-341 or 841 ethernet controller to communicate with a vacuum controller which uses a serial interface. I wonder if anyone has accomplished this

  • Create a validation for SQL Query (updateable report)

    Hello I have a need for creating a validation on a SQL Query (updateable report)- type region 1) When a row get populated i don't want same values to be populated in the second row.(as shown in first 2 rows) Also, I don't want to have a value that fa

  • Insert a Speakable Phrase in Applescript

    Can anyone tell me how to insert a speakable phrase into an applescript script. I would like to run a script and all it does is speak the pharse I have written in the script. Not run a sound.app or play a recorded clip. But speak a line of text that

  • Processes terminating automatically

    Hi, 10.2.0.2.0 on AIX Database went down automatically after the startup. alert.log Thu Jun 17 18:10:24 2010 Recovery of Online Redo Log: Thread 1 Group 4 Seq 1580 Reading mem 0 Mem# 0 errs 0: /dimoracle/oradata/dim10/redo04a.log Mem# 1 errs 0: /dimo