Help creating a Preset Effect

Hellos everyone, Big noob here,
Also just recently started using AE CS4
I wanted to create a effect based on these things:
Text moves from Position A to B
Text Fades as it happenes
Each word in a sentence does it at a seperate time
I managed to make the text move and fade out, but i can't make it so that it does it word by word in a sentence,
the sentence is quite long so i don't want to have to make a new layer for each word...
I just opened up a preset effect as i didn't know how to get a seperate transform effect...
Heres what i have now:
http://www.megaupload.com/?d=7YDZLEME
Help Appriciated

As Mylenium says, there's information here on selecting by word.
There are a bunch of examples for text animation here:
"Example and resources for text animation"
Since you just started using After Effects, I strongly recommend that you work your way through the materials here so that you have the basics, including the terminology with which to ask questions:
"Getting started with After Effects (CS4 and CS5)"

Similar Messages

  • Hi, In need of help creating a simple effect to image.

    Attached is an image which shows more or less the effect I am needing to achieve.
    http://i303.photobucket.com/albums/nn149/Jaybeedubya/FotoliaComp_635945_xs3N3VFLwPNTIOm1.j pg
    I created the image above by desaturating the colour image of the man and then adding a new purple layer and selecting 'vivid light' from the layer palette drop down box. In doing this the man became purple but the white area surrounding him stayed white...I then adjusted the layers on the first layer so that the white part became purple - the final result is what you see in the attached image.
    The problem is this - I need to create this effect for 15 or so images all with a specific purple pantone colour, I need to create these for print ready artwork. All the pictures (ie the man) I will be using, need to look the same kind of shade. The way I was creating these before was to adjust the bottom layer so its grey rather than white so that the white area becomes purple.
    Confusing huh, If you dont understand my question (and I dont blame you!) then all I need is to create a set of 15 images that look like the attached image (using a specific pantone) but I have no idea how the best way to do it is.
    How would you guys achieve that? Any help greatly appreciated.

    So its gonna be a two-color-job?
    Because with the extreme depths adding Black at least might be beneficial.
    You could make a Selection of a black&white-version-of-the-photographs luminance, inverse it and, in the Channels-Panels PopUp-menu, choose Add New Spot Channel for the Foreground color and select the Pantone color.
    Then Add New Spot Channel for the background-color and fill that solid black and hide the layers that contain the composite of the photograph.
    This should leave You with blank composite channels and the two Spot Channels visible.
    Indesign can handle either psd- or DCS2-files containing Spot Channels.
    The problem I perceive here is that depending on the print-process and the background color selected it might proof necessary to knock out the foreground elements if the company is very strict on their CI colors. Unfortunately simply inversing the foreground selection would probably not work as this might leave the mixed-color-areas greyish.
    Are the prints gonna be offset or silkscreen?

  • Need help creating a "mask" effect in swing

    So I'm making the visual part of my connect four program. I'm trying to create the effect of dropping the piece from the top of the board to the bottom. I use the timer swing to create the animation and the animation works fine. My problem is to make the piece seem like it's between the board whereas right now the piece is in front of the board.
    To see what I mean...here's the board without any pieces
    Please click --> https://students.washington.edu/porrkice/connect4.jpg
    Here's the board with a piece in the process of "dropping" into the bottom
    Please click --> https://students.washington.edu/porrkice/connect43.jpg
    The way I "drew" the board is this, and the piece is this...
      public void paintComponent(Graphics the_g) {
        super.paintComponent(the_g);
        Graphics2D g2d = (Graphics2D) the_g;
        This draws the board
        g2d.setColor(Color.yellow);
        g2d.fillRect(10, 10, my_board.getBoardsWidth() * 100, my_board.getBoardsHeight() * 100);
        g2d.setColor(Color.white);
        for (int i = 0; i < my_board.getBoardsWidth(); i++) {
          for (int j = 0; j < my_board.getBoardsHeight(); j++) {
            g2d.fillOval(MARGIN + i * 100, MARGIN + j * 100, 80, 80);
    This is to draw piece
    g2d.setColor(Color.red);
    g2d.fillOval(MARGIN + my_x * 100, my_y, 80, 80);
    }So basically, I just draw a rectangle, then draw a bunch of circles on top of it, then a circle that represents the piece...
    And what I want is when the piece is dropping, when it goes pass the white circles which represents holes on the board, the yellow part between the holes will be on top of the piece
    Hopefully I made my problem clear enough and someone could lend me a hand.
    Edited by: inspiredone on Feb 13, 2008 12:06 AM
    Edited by: inspiredone on Feb 13, 2008 12:06 AM

    Here's an example of what Darryl suggested:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class CompositeBoardTest extends JFrame {
         private static int size = 400;
         private static int offset = 10;
         private static int ovalSize = size/4 - offset*2;
         private static int pos = offset/2;
         private static int incr = size/4;
         public static void main( String[] args ) throws Exception {
              SwingUtilities.invokeLater( new Runnable() {
                   public void run() { new CompositeBoardTest(); }
         public CompositeBoardTest() {
              super( "CompositeBoardTest" );
              setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            Board board = new Board();
            add( board );
            setSize( size, size+34 );
              setVisible( true );
         static class Board extends JPanel implements ActionListener {
              private int[][] pieces = new int[4][4];
              private Piece addingPiece = null;
              private Timer pieceDropped = null;
              public Board() {
                   setPreferredSize( new Dimension( size, size ) );
                   setBounds( 0, 0, size, size );
                   pieceDropped = new Timer( 10, this );
                   addMouseListener( new MouseAdapter() {
                        public void mousePressed( MouseEvent e ) {
                             int column = ( e.getPoint().x-pos )/incr;
                             addPiece( column );
              protected void paintComponent( Graphics g ) {
                   super.paintComponent( g );
                   Graphics2D g2d = (Graphics2D) g;
                   Composite comp = g2d.getComposite();
                   Dimension d = getSize();
                   int w = d.width;
                   int h = d.height;
                 BufferedImage buffImg = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
                 Graphics2D gbi = buffImg.createGraphics();
                 // Clear area
                   g2d.setColor( Color.WHITE );
                   g2d.fillRect( 0, 0, w, h );
                   // Draw screen
                   gbi.setColor( Color.YELLOW );
                   gbi.fillRect( 0, 0, w, h );
                   // Draw pieces or holes
                   gbi.setColor( Color.RED );
                   for ( int row = 0 ; row < 4 ; row++ ) {
                        for ( int column = 0 ; column < 4 ; column++ ) {
                             if ( pieces[row][column] == 1 ) {
                                  gbi.setComposite( AlphaComposite.getInstance( AlphaComposite.SRC_OVER, 1.0f ) );
                             } else {
                                  gbi.setComposite( AlphaComposite.getInstance( AlphaComposite.CLEAR, 1.0f ) );
                             gbi.fillOval( incr*column+pos, incr*row+pos, ovalSize, ovalSize );
                   // Draw adding piece if we have it
                   if ( addingPiece != null ) {
                        gbi.setComposite( AlphaComposite.getInstance( AlphaComposite.DST_OVER, 1.0f ) );
                        gbi.fillOval( addingPiece.x, addingPiece.y, ovalSize, ovalSize );
                   // Draws the buffered image.
                   g2d.drawImage(buffImg, null, 0, 0);
                   g2d.setComposite( comp );
              public void addPiece( int column ) {
                   if ( addingPiece == null ) {
                        if ( pieces[0][column] == 0 ) {
                             addingPiece = new Piece();
                             addingPiece.row = 0;
                             addingPiece.column = column;
                             addingPiece.x = incr*column+pos;
                             addingPiece.y = 0;
                             pieceDropped.start();
                        } else {
                             getToolkit().beep();
              public void actionPerformed( ActionEvent e ) {
                   if ( addingPiece != null ) {
                        addingPiece.y += 5;
                        int row = ( addingPiece.y - pos )/incr + 1;
                        if ( row > 3 || pieces[row][addingPiece.column] == 1 ) {
                             pieces[row-1][addingPiece.column] = 1;
                             addingPiece = null;
                             pieceDropped.stop();
                   repaint();
         private static class Piece {
              public int row, column, x, y;
    }

  • Need help creating a cursor effect.

    I'm working on a little project that's like a text-based adventure, but played on a tumblr, so the readers submit their siggestions for actions.
    I'm looking to create animations for each post, so that it looks like the reader is typing in the text on the "game."
    I have the text-generation effect down using this code:
    var myString:String = "text data goes here.";
    var myArray:Array = myString.split("");
    addEventListener(Event.ENTER_FRAME, frameLooper);
    function frameLooper(event:Event):void
              if(myArray.length > 0)
                        tf.appendText(myArray.shift());
              else
                        removeEventListener(Event.ENTER_FRAME, frameLooper);
    //code sporked from Adam Khoury's Flash Typing Text Effect Tutorial video
    So that runs okay, but after that is done, I want there to be a final > prompt followed by a flashing cursor,as if asking for input.
    If anyone has a suggestion, that would be much appreciated.
    Thanks in advance!

    There's not much need to show anymore.  I already provided the code you can try to get a blinking cursor, but also said how it is iffy as far as it actually working. 
    The only difference I would offer for the code I provided earlier based on the image you show would be to add a new line before the ">", as in...
         removeEventListener(Event.ENTER_FRAME, frameLooper);
         tf.appendText("\n>");
         stage.focus = tf;
         tf.setSelection(tf.text.length,tf.text.length);  // in an ideal world this line, in league with the focus line preceding it will add the cursor... it just doesn't always work as advertised... especially for me

  • Help Creating Starburst With Randomized Rays

    Check out this background image below (or view larger size at this link:http://i3.campaignmonitor.com/themes/site_themes/default/img/bg_site-home.jpg) . I would like to know how they created the "randomized" effect of the rays behind the gray box.   I already know how to make your standard starburst using Abealls auto shape extension, but that creates uniform rays.  The rays of light in the below example are seemingly random.  I know this can be easily done in Photoshop using filters, but can it not be easily done in Fireworks?

    Here's my try ( btw, welcome to the forums! ) and even if it is not random, it is close to the desired effect.
    Save the file to your computer and de-construct. I have added a Noise filter effect, a bit of Gaussian blur and there is a half-transparent rectangle on top of the rays, with gradient (rays use gradient, too).
    Now, I suppose you could combine two Sunrays autoshapes, slightly shift one of them, make both half-transparent, and apply a bit different effects to both. You could also create a complex vector mask on top of the sunrays, with a complex gradient with varaible areas of half-transparency, and this could help create this "random effect" that you are going after...
    I hope that some wiser than me Fireworks guru will be able to help you more...
    Message was edited by: Michel (two more variants added)

  • Help creating an effect

    Hey everybody,
    I am wondering if anybody here could help me with an effect I am trying to achieve?
    Basically, I am creating a video as part of a university presentation, and I am trying to create an effect that shows quotes being scribbled over and then erased, and replaced by another quote. I got told to use After Effects for it, but I have just opened it up for the first time and I am pretty lost. I have tried desperately to search online but I am failing pretty bad, so it would be extremely useful if anybody could help me by offering some advice or pointing me towards a tutorial that will help me achieve it.
    The effect I wish to achieve can be seen right at the start of this video: http://www.youtube.com/watch?v=7E3oIbO0AWE
    Apologies for the link. It really is the only video I can find that has the effect I want to achieve.
    Martin.

    The tutorial on the Video Copilot site that Mylenium points to is good, but the video that ML1990 pointed to uses something even more simple (crude): a linear wipe transition and a scribble drawn on with something like the Write-on effect.
    So, I recommend going with what Mylenium posted, but it won't give exactly the same result as what ML1990 posted.

  • Help Creating An Effect With PR

    Can anyone help me with this, please?!!!
    How can I create the shake effect...the artist is vibrating/shaking on the video as well the people in the background.
    I was hoping there is a plugin for PR that allows this type of effect but any help you have is greatly appreciated!!!
    Thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Dj Chose - 3rd Level - YouTube
    What I am talking about is from 16-40 seconds into the video and again thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    After Effects has a Wiggle property that can do that:
    http://www.premiumbeat.com/blog/after-effects-wiggle-expression/

  • Help creating a over under font effect.

    Got me on this one and could use some help or a link to some help creating an effect I am looking to do. Have two letters, a D & G. What I would like to do is put either the top or bottom of the G under the D to give it an over and under effect. Like a figure 8 if you understand what I mean. Any assistance would be greatly appreciated. Thank you in advance and I am using CS6 fully up to date.

    Bill & Sulaco, I so want to thank both of you for your help. Here is the final result of your help and exactly what I wanted. Also a pic of my layers to show how your help ended with me getting the results I needed.Help was really appreciated.
    This is my history and how I did it. You 2 really were a help and getting me thinking. Just could not wrap my head around this and knew it was an easy thing to do. Note some of the history was unnecessary and was eliminated afterwards.

  • Working in Logic 9, how do I use a drum loop WITH ITS PRESET EFFECTS? I can drag and drop the loop but it plays dry in timeline. thanks

    Working in Logic 9, how do I use a drum loop WITH ITS PRESET EFFECTS? I can drag and drop the loop but it plays dry in timeline. thanks

    Here's the short-cut solution:
    Green Apple tracks are MIDI files (so to speak). If you drag one from the loop browser (Capitol C Orchestral hit, as you mentioned in this exable) directly into the arrange page it creates the MIDI file and the instrument to play it back on.
    HOWEVER.If you create and audio track first, THEN drag the green Apple loop onto that track, the loop will get "bounced" with the reverb in tact and you'll have the exact sound that you heard in the preview.
    Make sense?

  • Creating Loadable Preset Settings

    Hi,
    I am trying to create loadable preset settings for my controls.  I wasn't sure of the best method so I started by allowing the user to save the preset as a text file.  The problem I am having is how to load the presets from the text file.  I was thinking that I could try Read from Spreadsheet, but a few problems/questions arise from that.
    Problem #1: My text file has two columns.  For the sake of aesthetics I made it so the data of each column was perfectly aligned (Column 1 contains the name of the control and Column 2 contains the value of that control).  This leaves me with instances where different amounts of space exist between elements in the same row.  I am not sure how to parse the data in each row.  The easiest way I can see would be if i could have an offset per line since my control values are all the same length from the start of the line.  I can't figure out how to implement it, if it is even possible.
    Problem #2: If I manage to parse the data in the rows properly, I would be left with an array of control values.  How would I go about loading those values into the controls of the VI.  I am not sure how I would do that from an array.
    I have attached a text file with the formatting I described above to give some reference.  The file contains channel names with "inactive" next to them.  Those are supposed to correspond with 0's, which I figured I could convert to numbers before they were loaded into the proper boolean controls.
    Thanks
    Solved!
    Go to Solution.
    Attachments:
    IncrementTest1.txt ‏1 KB

    Hi Tom,
    Thanks for the response.  I checked out the library and it was pretty helpful.  I ended up figuring out a solution that didn't come directly from the library due to my curiosity.  It is able to read in my files and load the presets to controls.  Thanks for your suggestion!  I attached the VI I made in case anyone stumbles upon this thread with the same problem I had.
    Thanks! 
    Attachments:
    Read and Load Preset.vi ‏11 KB

  • Preset effects in Flash CS4

    Hello
    A  while ago I made a created a basic effect in Flash CS4 whereby a selection of logos on my web-page gradually disappeared (in the same spot, not shrinking in size first or any other of the effects displayed in the motion presets).
    I think this was done by some kind of preset but it doesn't seem to be in the motion presets panel. I can not seem to remember how it was done and I can't find the relevant settings. I don't know ActionScript so it was definitely a preset.
    Enclosed are some screen shots of the effect that I mean (stages every few seconds until they completely disappear).
    If somebody could remind me how this effect is applied again that would be great! Thanks.
    John

    Could this be a tween on the alpha value of the image from 1 to 0 (by any chance )?
    Hope this helps

  • How do i create a spotlight effect in final cut pro x

    How do i create a spolight effect in final cut pro x any help would be greatly recieved!!
    all i can find is tutorials for how to do the effect in the older version of final cut
    Many thanks!

    In the Timeline position your Playhead at the starting position.
    In the Viewport position the Shape Mask at the starting position.
    In the Inspector click the Add Keyframe button.
    Press Control-V to open the Animation Editor to see your keyframes.
    Move the Playhead and the Shape Mask to a new position.
    In the Inspector click the Add Keyframe button.
    Continue adding keyframes until you have defined the Shape Mask’s movement.
    Regards
    Nolan

  • How to create the droste effect in photoshop cc 2014?

    In the past you could use pixel bender to create the droste effect, that is what I have found out from the internet.
    But how to create that effect today seams non existent on the net!
    Can any one help?
    KR,
    AJ

    Right.  Pixel Bender is gone.  It was an experimental filter available from Adobe Labs but never made it into an actual product release. As of CS6, Oil Paint filter was introduced.  It's not the same thing but more like a shaved down version of Pixel Bender.
    Look at Filter Forge.  They offer a 30-day trial.  Disclaimer:  I've never used it myself.
    Droste Spiral (Effect)
    Filter Forge - Download Free Photoshop Plugins!
    Nancy O.

  • Need Help Making This Text Effect

    Can someone please assist on how I can create this text effect with the thick line surrounding the text phrase at this link?
    http://www.flickr.com/photos/lalogotheque/2801883641/in/set-72157608260902848/
    I have the font already and I'm using Illustrator CS 1.0 for Mac OS X.
    Thanks in advance for the help!

    Yes I guess that is the way it is done:
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=18MgENxFZNBGeizw4wAaWr5Jo6B5vS0" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/18MgENxFZNBGeizw4wAaWr5Jo6B5vS0_thumb.png" border="0" />
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=1Np8mdgE1ZazEbQZjQnP6huKdaL7EJ" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1Np8mdgE1ZazEbQZjQnP6huKdaL7EJ_thumb.png" border="0" />
    <br />
    <br />That is you make three copies of the text but this time I composed the text as one unit using baseline shift and different type sizes and spacing.
    <br />
    <br />Once I had text they way I wanted it and the three copies I kept one as is, in this case the black version.
    <br />
    <br />I then gave a color to the bottom most and gave it a sufficient Offset path setting to look solid.
    <br />
    <br />So there is now black text and a solid colored background in and expanded shape of the text.
    <br />
    <br />I then outlined the text for the text that had been offset and then used the pathfinder to merge the different paths within that art. That would be the first icon on the top left of the pathfinder panel.
    <br />
    <br />I then gave the text in between and outline twice the weight I wanted the gap to be and no fill and flattened the transparency choosing to outline the strokes.
    <br />
    <br />Then I selected the outlined I just created and the background I created before leaving the
    <br />the outline on top of the background and went back to the pathfinder and chose to minus the front. The second icon on the top left of the panel.
    <br />
    <br />And there you are.
    <br />
    <br />Now I can do a Video or perhaps someone like Mordy will stop by and clean up my explanation as I understand i am often not easy to follow as far as my writing is concerned.
    <br />
    <br />I hope this helps.

  • FW8 Can't Seem To Create Disjoint Rollover Effect

    Hello,
    I used previous versions of FW to create "disjoint rollover"
    effects without any problem. This time I'm using FW8 to create the
    same effect but so far it has proved unsuccessful, I have even
    tried the step by step instruction of "help" menu with no success.
    Can somebody pease help me with how to achieve this effect
    with FW8 if it is possible.
    Many thanks in advance!

    More than half of the trouble posts on the DW forum are the
    result of using
    a graphics editor to write HTML. It's a grand idea that
    utterly fails.
    Such HTML is rigid, and fragile. You cannot avoid HTML if you
    are going to
    be working on the web, no matter what the marketing hype
    says.
    Harsh? Perhaps. True and well intentioned? Yes.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "WollombiWombat" <[email protected]> wrote
    in message
    news:eo4c1j$kmn$[email protected]..
    > Murray: I think you are being a little harsh here for a
    newbie. If the
    > doco
    > says it works then it bloody well should!
    >
    > Linda: A voice of moderation and consideration as
    always. No wonder I like
    > your books and contributions at places like PVII and did
    I see you at
    > Community
    > MX ?
    >
    > Cobbyfred: Can I suggest that you take up Murray's
    veiled suggestion and
    > attempt to build the disjointed rollover using DW8 ?
    >
    > Cheers all.
    >

Maybe you are looking for

  • TOC Style

    Though the TOC Style "Always Show Selection" has been checked but still in the generated chm file using RoboHelp 10 does not close the book.  When a user navigates from one link to another from topics, the related topic is not displayed.  The other b

  • Beginner - Flat file upload error Help Please

    Hi Everyone, I am trying to upload a flat file [.csv] for the first time. I created Info objects  Material Id, Material Name , Price as keyfigure. Material Id holds Material Name and Price as attributes and is With Text and With Master Data. For the

  • How do I get an app developer to acknowledge my complaint ?

    I purchased a non consumable subscription for a game called Just Dance(made by ubisoft) that is valid for 30 days. The subscription began on the 8th of March and worked fine for 2 days until the app store outage, since the outage i have been unable t

  • How changing the song name?

    Is it possible to change the names of the song in itunes? The reason I want to do this is not because I am trying claim that the songs are by me. I just wana put "A","B","C"... in front of their names so they can be sorted the way I want

  • IPhoto crashes after update using OS X 10.8

    Using  Mountain lion OS X 10.8. I recently updated to the new iPhoto 9.4 and after updating iPhoto to 9.4 it keeps crashing. I've read prior discussions and those answers seemed not to work.  I pasted below the error message. Please help.  Thank you!