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.

Similar Messages

  • Looking for a comprehensive online tutorial or book

    Hello Guys!
    I am looking for a comprehensive online tutorial or book that would contain all steps involving java web application development.
    For example, it would be cool if it would contain requirement definition, design, implementation, etc. and how all that is applied to java web application development. Also, it would be neat if it would provide templates regarding diagrams for each stage of the development.
    I thank you guys in advence for your help,
    John

    Thanks benubach!
    There appears to be a lot of information but it seems
    that most of it is simply a Java tutorial. Maybe I
    simply can't quite find the particular doc on that
    page.
    I am interested in a web program development guide
    including how each of the steps (requirement
    definition, design, implementation, etc.) in the
    process are created. It also be nice if the info
    would focus on using java/jsp in the implementation
    of each of steps in the process.
    Thanks,
    JohnI doubt such a document exists. I was hoping to find something similar that didn't resolve around a trivial case, but gave up after a while. This seems to be something that is learned more with working with others as well as reading many little things and building on each other.

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

  • 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 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 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 Number's Tutorial

    I'm looking for an online tutorial for Number"s.

    Any help here? http://help.apple.com/numbers/mac/3.2/

  • 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 MSI Control Center Tutorial for overclocking i7 2600K

    Please, I am looking for a Detailed TUTORIAL for overclocking With MSI Control Center an I7 2600K on P67A-GD55 motherboard.
    Thank you.

    Quote from: Bernhard on 18-October-12, 14:39:08
    Intel absolute max is 100C, but for 24/7 continuous temps 70 to 80C under full load is a sensible.
    My personal comfort zone is around 70C. I use Prime95 to see where the temps top out. As long as that is 80 or below, I am happy, as I know that no program that I use stresses the CPU 100% all the time.
    The only time I made sure that I stayed at 75 max was when I was folding. That pushes the CPU to 100%. I ran my 2600K for one year continuous and the core temps were always between 65 and 75 at 4,5GHz, my core voltage was at around 1,35V. That CPU still has no issue.
    Thank you for your feedback.
    In fact, I'm looking for how to proceed with MSI Control Center to achieve the optimal settings for overclocking.
    What are the steps to increase the multiplier and possibly increase the voltage?
    Then, indeed, I think it will be better to enter these overclocking settings in the bios.

  • 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 step-by-step tutorial for in-app purchase with iOS

    Hello everyone,
    I'm in a bit of an unusual situation here. I'm currently working in a company, the elder programmers of which are in a different project while my humble self is charged with the task to develop for iOS with Flash Pro CS5.5.
    Our Creative Director is planning the app to have an in-app purchase feature for some content. The problem is, that I have never dealt with such core programming yet, so I don't yet have an understanding of how to imagine the process of the in-app purchase itself. Sure, I googled and read through the tutorials explaining the certificates and the procedure of getting the information from Apple to be able to publish Apps. But I haven't found a decent tutorial explaining the programming part of an iOS in-app purchase with AS3 yet. It might be because developing with Flash for iOS is currently developing (haha) and so the community is still growing, but surely there are already people who managed to get it all running, one only need to know where to look for them.
    So is there anybody out there, who could either explain himself, or point me into the right direction where someone else explains it, so I can learn the full process of integrating an in-app purchase function into an App developed for iOS with Flash and AS3?
    I would be incredibly thankful for information of any kind, that would help me.
    Thanks in advance!
    gd-dept

    Hi Mike,
    We have conducted several webinars around the world and all the recorded sessions are available in the PSD calendar (https://psd.sap-ag.de/PEC/calendar/). Just search for B1 sessions archived in May/June this year 2011.
    You will need an SAP user in order to be able to see them.
    There are also some theoric sessions on the SMP at http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000741411&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E& .
    All the exercises should be also published in that page soon (middle/end of October aproximately)
    Hope it helps
    Trinidad.

  • 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!

  • General Questions + looking for good beginner's tutorial

    Hello,
    I'm a web-developer with some hobbyist-level experience in programming Java applications.
    I'd like to write a content management system for my own clients, I was going to go with PHP, but thought I'd try it with Java instead. So the first step is to learn the Java web technologies! I'm pretty comfortable with the Java programming language, but I'm a complete novice when it comes to the Web APIs.
    After some messing about, I've got Tomcat 6 running in Linux, and have played around creating a few JSP 2.0 pages. My first impression is that it seems incredibly complicated to do something that would be very simple in PHP: I have to define a tag in an XML library, and create a whole new class & object, using "magic" methods etc., just to output something very simple. I actually had a look at the JSP 1.2 examples, and they looked to me much simpler and more intuitive, with the code written inline in the HTML, much more like PHP. That makes more sense to me, but I suppose I should make an effort to learn the newer technology? Should I be using Tomcat 7 to learn instead of Tomcat 6?
    I also had a look at the Java Servlet examples. These make more sense to me than JSP too. JSP pages just seem to be adding an extra layer of complexity on things with custom tags and tag definitions, etc., and I can't quite understand why. Maybe I will when I'm more experienced...
    Can anyone point me towards some good tutorials that start at the beginning. I've pieced together what I've been able to figure out so far from the Tomcat 6 documentation pages and by experimenting with the structure of the various xml files included with tomcat, as well as copying the structure of the Tomcat 6 example pages. I've tried doing google searches for tutorials, but they all are either very out-dated (circa 1999), or they assume a whole bunch of knowledge.
    I have learned a lot by experimenting with and re-creating the Tomcat 6 examples pages, but a good, simple, not-too-technical, beginner's tutorial would be a great help in "tying it all together" and removing some of the "magic stuff".
    Thanks very much for your help.

    The reason we separate projects into layers is because project grow over time to a point where its impossible to maintain if we don't separate it into modules.
    Here is a post I provided on my opinon on coming up to speed on your first web development project.
    http://forums.sun.com/thread.jspa?threadID=5433317&messageID=10960943#10960943
    Here is a MVC design approach to your first project.
    http://forums.sun.com/thread.jspa?threadID=5435833&messageID=10972163#10972163

  • 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

Maybe you are looking for