Looking for adding machine effect seen in "Supersize Me"

Does anyone know if you can do the following effect in Motion 3:
I'm trying to do an adding machine effect where you see figures change like you would on altimeter of an aircraft or an adding machine. I saw this effect in Morton Spurlock's "Supersize Me".
There must be some Motion 3 behavior or plug-in that can do this.
Thanks very much in advance,
- Nicholas

altimeter of an aircraft or an adding machine< </div>
Altimeters are usually analog dials. Adding machine would be an analog paper tape.
There are many cool gauge objects in Motion 3 and designing a paper tape simulation could be fun.
No idea how you would create a behavior to run the displays, though. (Easy in After Effects with an expressions control)
bogiesan

Similar Messages

  • Looking for Wedding Special Effects for FCP!!!

    Hi guys,
    Help me out here! Can someone tell me where I can find wedding effects/ plugins and transitions for FCP.
    I have seen things like firework plugins on tv or flowers making the transitions and so forth.
    I looking for something similar or better.
    Thanks a bunch in advance everyone,
    Zia

    Hi Dave,
    I am reffering to stuff like Digital Juice Toolkit7 Wedding Tools II.
    I am also looking for plugins or matte like Sparkles, Flowers, Fireworks and others to work as animated mattes on top of a clip.
    Thanks,
    Zia

  • Looking for a specific effect

    Does anyone have a quick answer to this:
    I'm looking for an effect of subtle shaking text
    as if you are reading the text on a subway.
    I'm putting subway sounds in the background.
    Thanks,
    D

    Yet another method:
    hit the record, press play, and jiggle your text dragging it with the mouse, that should create a more random motion.

  • Looking for good magic effect plug in

    Hi-
    Was looking for a good magic effects plug in, things like aura, energy beams, force fields, ect...I am willing to pay $$$...
    Thanks in advance,
    Matt

    Best advice as Mylenium says is to look at as many tutorials as you can - I'd start with the excellent and fully featured tutorials from www.videocopilot.net and also http://library.creativecow.net/tutorials/adobeaftereffects
    Getting to grips with particular will also give you some creative options with particles.
    Paul.

  • Looking for a photo effect

    I have been looking, unsuccessfully, for a photo effect in AS3. I am a noob so I don't know how to programme complex effects. I could do it in after effects but I would prefer it in AS3.
    How can I achieve an effects like this one
    http://www.flasheff.com/patternsshowcase/?pattern=FESBlurSquare
    Thank you

    hi
    its been a while since i used AS2 but i think AS3 has more effects (filters) - although some of them cant be set via the IDE (see http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filters/package-d etail.html for the list)
    if we were restricted to 'non-coded' effects, the possibilities would be much reduced...

  • Looking for Helicopter sound effect

    Ive come close to creating it by altering a synth basic sound, but its still off a little. Any ideas?

    Are you looking for a helicopter sample, or an AU that makes your pre-existing sound into a helicopter effect?
    If it is the former, Hang and Christoph gave you some nice examples, and you can do a google search for "Helicopter Sound Effects."
    If it is the latter, this free au plug in does a nice job of simulating it.
    http://www.twofloorsrecords.com/?page_id=49
    X

  • Looking for a similar effect

    I am looking for an effect similar to the one which comes after this site: http://www.nisgia.com/ is loaded. The coming and scattering of items. Any resource or tutorial to something similar?

    Here is if you want to use it as doc class:
    package
         import com.greensock.easing.Cubic;
         import com.greensock.TweenMax;
         import flash.display.Graphics;
         import flash.display.Shape;
         import flash.display.Sprite;
         import flash.events.Event;
         public class Scatter extends Sprite
              // array of pages
              private var pages:Array;
              // number of pages
              private var numPages:int = 100;
              public function Scatter()
                   if (stage) init();
                   else addEventListener(Event.ADDED_TO_STAGE, init);
              private function init(e:Event = null):void
                   removeEventListener(Event.ADDED_TO_STAGE, init);
                   createPages();
              private function onEnterFrame(e:Event):void
                   // random to select from array
                   var index:int = (pages.length - 1) * Math.random();
                   //trace(index);
                   var pageObj:Object = pages[index];
                   var page:Sprite = pageObj.page;
                   // intermadiate scale
                   var interScale:Number = 1.1;
                   page.x = pageObj.xs;
                   page.y = pageObj.ys;
                   page.scaleX = page.scaleY = 3;
                   page.rotation = pageObj.rs;
                   addChild(page);
                   // animate the page
                   TweenMax.to(page, 1, { x: pageObj.xe, y: pageObj.ye, scaleY: interScale, scaleX: interScale, ease: Cubic.easeOut, onComplete: onTweenComplete,onCompleteParams:[pageObj] } );
                   pages.splice(index, 1);
                   if(pages.length == 0) removeEventListener(Event.ENTER_FRAME, onEnterFrame);
               * Rotates target into final position
               * @param     obj
              private function onTweenComplete(obj:Object):void {
                   TweenMax.to(obj.page, 1, {scaleY: 1, scaleX: 1, rotation: Math.random() > .5 ? obj.rs + 10 :  obj.rs - 10} );
              private function createPages():void {
                   pages = [];
                   // random number
                   var r:Number;
                   // start positions
                   var xs:Number;
                   var ys:Number;
                   // padding from edges
                   var padding:Number = 20;
                   // inner boundaries
                   var bx:Number = stage.stageWidth - padding;
                   var by:Number = stage.stageHeight - padding;
                   for (var i:int = 0; i < numPages; i++)
                        // randomize for initial x and y
                        r = Math.random();
                        // position in different qarters around stage
                        if (r < .25) {// top
                             xs = - 100 + Math.random() * (stage.stageWidth + 100);
                             ys = -100;
                        else if (r > .25 && r < .5) {// right
                             xs = stage.stageWidth + 100;
                             ys = - 100 + Math.random() * (stage.stageHeight + 100);
                        else if (r > .5 && r < .75) {// bottom
                             xs = - 100 + Math.random() * (stage.stageWidth + 100);
                             ys = stage.stageHeight + 100;
                        else {// left
                             xs = -100;
                             ys = - 100 + Math.random() * (stage.stageHeight + 100);
                        pages.push( {
                             page: page,
                             xs: xs,
                             ys: ys,
                             xe: padding + Math.random() * bx,// end x
                             ye: padding + Math.random() * by,// end y
                             rs: Math.random() > .5 ? Math.random() * 45 : Math.random() * -45// rotation start
                   // start animation
                   addEventListener(Event.ENTER_FRAME, onEnterFrame);
              private function get page():Sprite {
                   // page dimensions
                   var w:Number = 40;
                   var h:Number = 52;
                   // dimensions halves
                   var wh:Number = w * .5;
                   var hh:Number = h * .5;
                   var foldWidth:Number = 10;
                   var s:Sprite = new Sprite();
                   var g:Graphics = s.graphics;
                   g.lineStyle(1, 0xBCBCBC);
                   g.beginFill(0xF0F0F0);
                   g.moveTo( -wh, -hh);
                   g.lineTo(wh - foldWidth, -hh);
                   g.lineTo(wh, -hh + foldWidth);
                   g.lineTo(wh, hh);
                   g.lineTo( -wh, hh);
                   g.endFill();
                   g.beginFill(0xFFFFFF);
                   g.moveTo(wh - foldWidth, -hh);
                   g.lineTo(wh, -hh + foldWidth);
                   g.lineTo(wh - foldWidth, -hh + foldWidth);
                   g.lineTo(wh - foldWidth, -hh);
                   g.endFill();
                   s.addChild(icon);
                   s.cacheAsBitmap = true;
                   return s;
              private function get icon():Shape {
                   var s:Shape = new Shape();
                   var g:Graphics = s.graphics;
                   g.beginFill(Math.random() * 0xFFFFFF);
                   g.drawEllipse(-13, -20, 26, 40);
                   g.endFill();
                   return s;

  • Looking for / adding a html logo to website

    Hi there,
    I'm looking for the html code for a flashing logo (ideally simulating neon) so that I can add it to my iWeb page that I am making for my music. Does anyone know if this is possible and have any advice or ideas on how I could achieve this? I'm presuming if I figure out the code then I can add it as an html snippet in iWeb.
    Thanks in advance
    Steve :o)
    www.reverbnation.com/urt

    A flashing logo can be anything. From a animated gif to Flash.
    HTML accomplishes nothing of that kind. You may have to use JavaScript.
    An animated gif is simple. Find or create one and use that. For Flash you need the proper object code and paste it in the HTML Snippet. [Here are some pages|http://web.mac.com/wyodor/iFrame> with an mix of codes.
    I usually browse the internet looking for website that use what I'm looking for. Then I study the code and pick what I need.
    To start, first define what it is you want to flash.
    [Search Google for flashing logo|http://www.google.com/search?q=flashing%20logo]

  • Looking for a cost effect headset for my QS 2002....

    Afternoon all
    I'm in the market for a cost effect headset kit for my QS 2002.... so I can tune into my MLB games quietly... any ideas?
    Any links to a workable solution?
    Thanks
    Rich

    I picked up a "Studio Monitor" headset by Sony for $19.95 and a audio extension cable for $3.95 at Best Buy and they work great with my QS 2002!

  • Looking for "kidnaped" letters effect tutorial

    Hi everyone. I was looking for a tutorial on how to make letters appear like are cut out from a paper and assembled in a "kidnaped" message. Like in old movies. Here is an example:
    Much like this but maybe a litle more serious and realistic. I searched on google with different keywords...but with no help. Maybe you guys could help me and tell where I could find a tutorial on how to make it on photoshop (CS6 is what I have). Thanks

    You could try these free fonts: http://urbanartz.deviantart.com/art/Kidnapped-font-346486247, http://www.fontsaddict.com/font/erpressung-normal.html. And search for other similar fonts so that you can get some variation in the style of the letters - https://www.google.co.uk/search?q=kidnapped+font&client=firefox-a&hs=OXe&rls=org.mozilla:e n-GB:official&source=lnms&tbm=isch&sa=X&ei=Fm2CUuCDD5GA7QaxsYBI&ved=0CAkQ_AUoAQ&biw=1770&b ih=982.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Looking for real world effects site

    Hi everybody
    This is the first time ever using this forum, so please don't let me down.
    I'm using FCS3 and doing some small jobs for a while now, and recently, I've been asked to film a music video, and the guy wants some professional effects, and i got scared since then.
    here comes my request; I need a website or ... that show me then explain to me some real world effects that i can use it in the music video,
    I'm really tired of looking and searching.
    Thanks very much
    Salah

    Oho...so you want to go from dabbling in video with some small jobs, to doing high end effects like you see in THE MATRIX? Quite a leap. And you want to learn how to do this via online tutorials and the like?
    Sigh.
    like how to freeze frame while sweeping the camera about 180 degree around the objects (people).
    Rent THE MATRIX and watch the EXTRA called BULLET TIME. See how they use 150 still cameras linked together to go off mere milliseconds apart. HIgh end visual effects guys with years of training figured that out.
    i need someone to say this is a new tool in motion and you can use it to create this kind of effects ( real world, with people )
    Not gonna happen because it doesn't exist. YOu want to have some application or plugin somehow be able to freeze someone, and spin them around, somehow seeing the OTHER SIDE of them, even though the one camera is on one side. Or, you can use 5-10 cameras all shooting that person, and use something like After Effects or other 3D program that stitches together that footage to make it do just that. Not simple...not by a longshot.
    that's what I'm searching for. new professional stuff.
    Professionals don't usually put their trade secrets online. Otherwise any old person could do what they did, and they wouldn't get paid the big bucks to figure it out, and do it on music videos and movies. That's why you don't find anything online.
    Sorry to be snarky here...but I still wish you luck in figuring this out.
    Shane

  • Looking for this nice effect

    Hello everyone,
    I've been looking around for a couple of days and am trying
    to build this smooth easing effect. Please have a view here:
    http://www.cozumelrs.com.br/
    When you move your mouse around on the 1st page before
    selecting languages, everything responds in a smooth mouse opposite
    behavior. Anyone worked on something similar or might have any
    suggs?

    first 2 general comments: 1) if you use setInterval() with a
    small time parameter (like 2 ms), then you should use
    updateAfterEvent() in the function being called so the stage
    updates after the function executes. otherwise, you lose the
    benefit of those frequent function calls.
    2) always use clearInterval() to terminate a setInterval()
    loop that's no longer needed. and an even better rule-of-thumb is
    to use clearInterval() even when you don't think a setInterval()
    has been defined or you think it has already been cleared. ie, you
    can't use too many clearInterval() statements. they cause no issue
    when you (try to) clear an interval that doesn't exist. on the
    other hand, if you ever execute identical setInterval() statements
    you'll have a mess that cannot be fixed after the duplicate
    interval is created. (an example is below.)
    you can use a similar function, to the above, for any number
    of movieclips and any number of easing equations. the essential
    part of the easing equations i used is that the number multiplying
    yourMC._x plus the number multiplying destX equal 1. that way you
    can be sure yourMC._x will converge to destX.
    with the easing equation you used for yourMC._x, yourMC._x
    will converge to .8*destX.
    anyway, to generalize that code:

  • I'm looking for a certain effect

    is there a plugin/effect out there that you can make it look like the letters are being spray painted in livetype? i really wasn't coming up with anything when i looked in this forum or on google. please help me if you know how to make it look like the text is being spray painted onto the screen.
    thanksx

    There's nothing in Live Type that does what you want...the closest thing would be Skywriter in the Live fonts but you can't change the color on it and you would need to put each letter on a seperate track to make it work.
    I think I read in a discussion months ago about doing this in Motion, you might check that forum.
    Other than that the only plugin I've heard about is at
    www.pluginz.com/product/10062?category=62
    I"ve never used it thought so can't attest to its quality.
    Good Luck
    Doug

  • Looking for "Dry Brush" effect in After Effects

    Hi, I'm new to After Effects (CS4), and can't find an effect.  Hopefully it exists.  Photoshop has an "artistic effect" called Dry Brush.  It is not anything using brush strokes or actully painting on the screen.  What it does is filter the whole frame to make the image look like it was painted.  When used at its lowest settings, it removes all small blemishes in a frame, all subtleties in color, and sharpens edges so that it really looks like an oil painting. The result is similar to a "cartooning" plug-in, but less intrusive. I'm hoping that After Effects has a way to apply this sort of effect to whole video clips, not just frame by frame.  Perhaps it has a different name in After Effects; perhaps there is a plug-in.  I can't find anything like it.  Any suggestions?
    Thanks,
    Steve Siegel

    You can do this kind of effect pretty easily using some subtle settings in the cartoon effect or using some color correction tools with harsh settings. Variations of color can be build with Mosaic, Cell, Turbulent Displace, Fractal Noise etc. used on top or as displacments.... The edges can be done using simple Find edges and Roughen Edges. you just need to work with multiple layers and apply the effects selectively, then use blending modes to bring it all together.
    Mylenium

  • Looking for specific Title Effect

    Hey, all. Does anyone know how to make a title where one word from the first title remains, while the rest disappear, and then this one word becomes part of another title, which pops up? For example, the first title would be, "Four score and seven years ago....." All the words would disappear except for seven, and then the next title would appear " lucky number seven....."
    Thanks all !
    (I'll be checking myself.)

    .. well I should write "any pic processor" ...
    your Mac came with GraficConverter, iWorks, Appleworks, ...
    it is more convenient with PSE, which is THE pic processor..
    and I'm used to...
    but I hope, my demo shows the basic principle..
    problem with iM: it has no "place letters precisely" command...
    and to accomplish that effect, the magic word has to be set with pixel precision...
    you could even < shiver > accomplish that with a word processor, which is able to create .pics instead of .docs ...

Maybe you are looking for

  • Red blue yellow lines in safari under Google search links

    when I look up something on Google under each link I see red yellow blue colors in safari it's really annoying how do I turn it off

  • Yes Im a newbie - Why cant I stack? Grrrr

    Ok I am embracing the help manual - stroking it gently and still having an issue. I made a catalog from my shoot - 785 images of a four group family shoot. I made collections to organize the different locations we shot the groups at. Now I want to st

  • How to associate Ship-To-Party to a Sold-To-Party using BAPI

    I am looking for a BAPI that will allow me to associate existing Ship-To-Party to an existing Sold-To-Party. I tried to search for the BAPI that might do this job but could not find one. Any help is greatly appreciated. System: SAP R/3 4.7 Edited by:

  • JRockit R26.4 JDK1.5: Illegal memory access.

    Hi, we are running JRockit R26.4 with JDK 1.5 on a Windows 2003 system with Wrapper version 3.2.0. If we spider the site (with some 4000 pages) a crash occurs. The weird thing is that no matter how we set the memory, the java.exe process will grow up

  • Msi bluetooth headset is bot recogizable as bluetooth device

    I have bought a MSI bluetooth headset. The manual of this device claims that it should work with a SonyEricsson T610, but my GSM doesn't "see" the headset. The GSM is able to see other bluetooth (headset) devices. I tried the headset with my laptop.