Creating a negative embossed text effect in 3D

I can't seem to find the settings or method to create a carved into steal embossed effect .

I think you should search for text effects tutorials there are many free one on the net.

Similar Messages

  • How to Create the Engraved/Carved Text Effect.

    Hello everyone,
    First I have search the forum for this topic but did  not find it.
    I am looking to create a Carved/Engraved  Text Effect.
    Something like this: http://www.patrickjudson.com/projects/example.jpg
    There are other better examples but basically the text appeared to  be  engraved or carved in the background.
    I have been  struggling to learn this.
    Any ideas?
    Thanks for  the help.

    The short answer is to use layer styles which will do a pretty good fake of this effect. If you are looking to actually distort a texture, check out this tutorial: http://www.2morrow.dk/75ppi/3dtext/default.htm (you may substitute KPT3.0 with Photoshops shape burst gradient effect).

  • How to create a retro 3d text effect in indesign Cs6?

    Hello, i need to know how to make this retrolift 3d text effext in indesign.

    http://indesignsecrets.com/making-long-shadows-indesign.php

  • Looking for some good text effects type plugins for CS5 or CS5.5

    I have a website that I am updating and I wanted to create some really cool text effects. The effects are something that I want to create in After Effects to give it the movie effect with sounds, etc.
    What I'm looking for is some add-on software that can boost the text. Any ideas?
    Thanks

    Since you're brand-new here, there's a VERY crucial question to ask: have you ever used After Effects before?
    The reason: it's not the kind of application you use for a couple of tricks with and expect things to turn out right the first time.  It takes a good knowledge of the AE basics to make it do what you want.
    So how do you get the basics?  You go here.
    ...and if you need this animation in a big hurry, you might want to have a Plan B ready to go.

  • Whfree can i find my channels in elements 11..i am trying to create a text effect

    I am trying to create a text effect that requires me to make all channel active.  Normally in photoshop i can find the tab near my layers  but they are not there.

    There is no channels palette in Elements.
    You can select channels in the levels command. There is generally a way to do what you want in Elements; can you give more details about what you want to achieve?

  • How can I create a shadow text effect?

    How can I add a blur effect to text on a BufferedImage. I am trying to create a shadow text effect. Here is what I have currently.
    BufferedImage image = new BufferedImage(500,120,BufferedImage.TYPE_INT_RGB);
    Rectangle2D Rectangle = new Rectangle2D.Double(0,0,500,120);
    Graphics graphics = image.getGraphics();
    Graphics2D g2d = (Graphics2D) graphics;
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    g2d.setPaint(Color.white);
    g2d.fill(Rectangle);
    g2d.draw(Rectangle);
    //Shadow text
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    shadow = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.lightGray);
    shadow.draw(g2d, 13, 103);
    //Main text
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    text = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.black);
    text.draw(g2d, 10, 100);
    I found a blur effect but it affect the whole image not just the shadow. Here is an example.
    BufferedImage image = new BufferedImage(500,120,BufferedImage.TYPE_INT_RGB);
    Rectangle2D Rectangle = new Rectangle2D.Double(0,0,500,120);
    Graphics graphics = image.getGraphics();
    Graphics2D g2d = (Graphics2D) graphics;
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    g2d.setPaint(Color.white);
    g2d.fill(Rectangle);
    g2d.draw(Rectangle);
    //Shadow text
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    shadow = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.lightGray);
    shadow.draw(g2d, 13, 103);
    Blur filter
    float ninth = 1.0f / 9.0f;
    float[] kernel = {ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth};
    biop = new ConvolveOp(new Kernel(3, 3, kernel));
    op = (BufferedImageOp) biop;
    image = op.filter(image,null);
    //Main text
    g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
    text = new TextLayout("Shadow Text", new Font("Serif", Font.BOLD, 70), g2d.getFontRenderContext());
    g2d.setPaint(Color.black);
    text.draw(g2d, 10, 100);

    I thought I answered that question?!
    In your code above, watch out for statement:
    image = op.filter(image,null); The resulted buffered image is new, so you are updating the reference held in variable image.
    Unfortunately variable g2d is still refering to a graphics object back by the original image, so:
    g2d.setPaint(Color.black);
    text.draw(g2d, 10, 100);renders on the first buffered image, not the second.
    Here's my code again, touched up a bit.
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.io.*;
    import java.util.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class ShadowText {
        public static void main(String[] args) throws IOException {
            int w = 500;
            int h = 120;
            Font font = new Font("Lucida Bright", Font.ITALIC, 72);
            String text = "Shadow Text";
            BufferedImage image = new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
            Graphics2D g = image.createGraphics();
            adjustGraphics(g);
            //start off all white:
            g.setPaint(Color.WHITE);
            g.fillRect(0, 0, w, h);
            //draw "shadow" text: to be blurred next
            TextLayout textLayout = new TextLayout(text, font, g.getFontRenderContext());
            g.setPaint(new Color(128,128,255));
            textLayout.draw(g, 15, 105);
            g.dispose();
            //blur the shadow: result is sorted in image2
            float ninth = 1.0f / 9.0f;
            float[] kernel = {ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth, ninth};
            ConvolveOp op = new ConvolveOp(new Kernel(3, 3, kernel), ConvolveOp.EDGE_NO_OP, null);
            BufferedImage image2 = op.filter(image,null);
            //write "original" text on top of shadow
            Graphics2D g2 = image2.createGraphics();
            adjustGraphics(g2);
            g2.setPaint(Color.BLACK);
            textLayout.draw(g2, 10, 100);
            //save to file
            ImageIO.write(image2, "jpeg", new File("ShadowText.jpg"));
            //show me the result
            display(image2);
        static void adjustGraphics(Graphics2D g) {
            g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
            g.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS, RenderingHints.VALUE_FRACTIONALMETRICS_ON);
        static void display(BufferedImage im) {
            JFrame f = new JFrame("ShadowText");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JLabel(new ImageIcon(im)));
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • What Flash Add on software is the best to create amazing text effects and picture animation?

    I'm new to web design but fairly good with Adobe products. I currently have Flash CS4/CS5  but I'm looking for some addon or third party software that I can use to create some great text effects in Flash along with some cool picture effects (spinning around, moving in, pausing, them moving off the screen).
    Any ideas on which suites would be the best?
    Thanks

    Flasheff is probably the most popular and glamorous
    http://www.flasheff.com/patternsshowcase/
    I have no experience using it, but the demo's look pretty cool.

  • How do I create this text effect in motion?

    Hi,
    I am a bit of a motion newbie - and am stuck as to how to replicate this sratchy/jumpy/glow text effect found in the video preview here . . . .
    http://www.worshiphousemedia.com/index.cfm?hndl=details&tab=MM&id=4609
    (click the video in top left)
    If anyone can offer some help it would be greatly appreciated.
    Warmest Regards,
    Adam

    mark, patrick, pierre and Longstrider - thankyou - sucess!
    Longstrider- special thanks for your fab run through I knew it couldn't be too tricky... hehe - it really isnt!
    I have got it shaking and mimicked exactly as in the sample vid clip - now i just have to add the randomisation on opacity, and perhaps some graininess to the text (text edging&fill is a bit sharp and clean).
    Once again - thankyou so much!
    Warmest Regards,
    Adam

  • Creating a Text Effect

    Hello there,
    Can anyone help me in making a text effect the same as the
    one located at the top right-hand corner of the following site:
    http://www.heartinternet.co.uk/.
    I would be very greatful if anybody could help.
    Regards,
    Coxdabd.

    > Thank you for your message.
    >
    > Yes, the one next to the lady.
    Hi Coxdabd
    It's simple two layers animation using motion tween. One
    layer move the text
    slightly and fading it out while th other layer fading the
    text in, also moving
    it slightly. One of the things I love so much about flash,
    simple methods can
    produce interesting results.
    Anyhow, I do understand that visualizing that when you new
    user might be tricky
    so I made quick sample for you.
    http://flashfugitive.com/tween_Coxdabd.swf
    d/l
    http://flashfugitive.com/tween_Coxdabd.fla
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Text Effect Does Not Appear

    I have never encountered this problem before. I wanted to make my copyright watermark more striking, so I created a variation on the relatively well-known "glass" text effect, but the effect will not print, nor will it show up when the file is saved as anything other than a psd. I have tried to rasterize the text, rasterize the layer, and convert it into a smart object; I get nothing. I have exported it to Illustrator, and I get nothing. I have just opened the psd in other programs that read the psd format, and I get nothing: it always just turns out as flat, unaltered text. Even Photoshop won't print anything but the flat text. Save it as something like a jpg, and the result is an image with flat text. I don't have this happen when I do simpler effects: my current watermark is a bevel and emboss with contour and a drop shadow, and it looks perfect; but when I do the more complicated layering to make the glass effect, the result is as if I had done nothing but put text color on it. In fact, the only way I can even show the effect here is via a screen capture from Photoshop CS5, which looks like this:
    It's not a very good rendering of what it looks like in Photoshop, but the screen capture is the only thing I've got.
    The layer effects that were enabled for the image you see are inner shadow, outer glow, and bevel and emboss. Several other effects I had already turned off.
    Is it the case that some text effects just won't show up? I can't imagine that's the case, since the sites where creating such effects are demonstrated certainly must be exporting the imagery to show it on their sites.
    One last curiosity is that, once I've put in all the layers, I can turn them off one by one, and I get no effect, even when I've turned off effects to the point where I basically have my original watermark style, which looks just fine in print and jpg.
    Does anyone have an explanation for why this is happening. Is it something I'm doing, or is it really that I can't print or present as jpg images some text effects?
    On a techical note, I'm using Photoshop CS5 64-bit in Windows 7 on a very good computer, and my main monitor is not IPS, but it is VA, and is calibrated every two weeks.
    Any help in solving my rather frustrating mystery would be most appreciated.

    I shall herewith provide as much visual information as possible to help you see the work product and its components.
    This is a screen capture of a photograph in which I used the glass effect:
    Next is a capture to show the effect more clearly (a published print would have the opacity of the text layer reduced considerably since it looks rather strong at 100%):
    Next is what happens to the effect when the psd file is converted to JPG. This is also what it looks like as a print straight-away from Photoshop, and it even looks like this in the Print Preview window of Photoshop:
    And finally, below are screen captures of each effect applied to the text layer, followed at the end by the Character set-up:
    I do apologize for the extensive graphics in this post, but I am hopeful that this evidence will be sufficient to provide the answer to my inquiry about why the glass text effect declines every effort to show outside of the Photoshop screen.

  • Drop Down Text Effects

    Hi there.
    I'm created topics currently that have drop down text effects in them.
    Basically, I have a title which has got a little image next to it (a plus expand sign image).
    When you click either the image of the title text, the drop down text appears as intended.
    Is there anyway I can get it, so that when you click either the text or the image, the image changes to be a minimise image?
    The screenshots below demonstrate what I mean a bit clearer.
    Thanks very much,
    Craig

    Hi Craig
    All I can say is that the script or whatever simply isn't finding the image if you are viewing from the compiled CHM. When you compile, you need to ensure that everything is in the place it needs to be. For example, maybe you have a folder in your project and you added the image to the folder. But in reality, it's looking for the image in the project root. Because the image is in the folder, it cannot be found.
    I'd suggest a double-check of things just to be certain.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 moments from now - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcererStone Blog
    RoboHelp eBooks

  • Text Effects for iMovie

    I am looking for some plug-in text effects for iMovie 08, I could settle for iMovie HD 6 or Final Cut Express. Specifically I am looking text bubbles or comic bubbles.
    Can anyone help me in my search?
    Thanks
    Gene

    I am looking for some plug-in text effects for iMovie 08
    iMovie '08 does not currently have a "plug-in" architecture compatible with plug-ins.
    I could settle for iMovie HD 6 or Final Cut Express.
    iMovie HD v6.0.4 is available as a free download to iLife '08 owners.
    Specifically I am looking text bubbles or comic bubbles.
    Such effects are easily created with most graphic applications and can be applied from within iMovie '08.

  • Bridge .ffx files (text effects) no longer open up in After Effects 2014?

    I am having an issue trying to get the text effects (.ffx) in Bridge (that use to open up in After Effects just fine) to open up in After Effects 2014 latest update. Is there a work around, setting or alternative I can use?

    Here is the log I received with the error:
    10/21/14 10:47:54:850 | [INFO] |  | OOBE | DE |  |  |  | 11806 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    10/21/14 10:47:54:850 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Visit http://www.adobe.com/go/loganalyzer/ for more information
    10/21/14 10:47:54:850 | [INFO] |  | OOBE | DE |  |  |  | 11806 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    10/21/14 10:47:54:850 | [INFO] |  | OOBE | DE |  |  |  | 11806 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    10/21/14 10:47:54:850 | [INFO] |  | OOBE | DE |  |  |  | 11806 | START - Installer Session
    10/21/14 10:47:54:850 | [INFO] |  | OOBE | DE |  |  |  | 11806 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    10/21/14 10:47:54:850 | [INFO] |  | OOBE | DE |  |  |  | 11806 | RIBS version: 8.0.0.22
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | OSX version: 10.7.5 
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [Total Timer]
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | CHECK: Single instance running
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | CHECK : Credentials
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Load Deployment File
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | deploymentFile option not given
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | CHECK : Another Native OS installer already running
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Create Required Folders
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Assuming install mode
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Looking up install source path
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Sync Media DB ...
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [Sync Media DB]
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Pre check media db sync
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | End of Pre check media db sync. Exit code: 0
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | :: END TIMER :: [Sync Media DB] took 149 milliseconds (0.149 seconds) DTR = 4241.61 KBPS (4.1422 MBPS)
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Ready to initialize session to start with ...
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [CreatePayloadSession]
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Updated source path: /Users/adam/Library/Caches/Adobe/AAMUpdater/AdobeAfterEffects-13.0.0-Trial/13.1.1
    10/21/14 10:47:54:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Updating media info for: {5678CF8D-3B5F-4CC6-B150-48945A838E63}
    10/21/14 10:47:54:858 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Ignoring original data since install source is local
    10/21/14 10:47:54:858 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_13_1_1_ftr
    10/21/14 10:47:54:858 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Path: /Users/adam/Library/Caches/Adobe/AAMUpdater/AdobeAfterEffects-13.0.0-Trial/13.1.1/payload s/AdobeAfterEffects13SupportAll-101014104158/AdobeAfterEffects13SupportAll-101014104158.zi p
    10/21/14 10:47:54:858 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Updating media info for: {C135CD0F-ED45-4935-9B71-9D02735BD274}
    10/21/14 10:47:54:859 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Ignoring original data since install source is local
    10/21/14 10:47:54:859 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_13_1_1_ftr
    10/21/14 10:47:54:859 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Path: /Users/adam/Library/Caches/Adobe/AAMUpdater/AdobeAfterEffects-13.0.0-Trial/13.1.1/payload s/AdobeAfterEffects13AllTrial-101014102412/AdobeAfterEffects13AllTrial-101014102412.zip
    10/21/14 10:47:54:859 | [INFO] |  | OOBE | DE |  |  |  | 11806 | --------------------  END  - Updating Media Sources -  END  --------------------
    10/21/14 10:47:54:866 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Supported RIBS version range: [0.0.0.0,8.0.0.22]
    10/21/14 10:47:54:867 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ----------------- CreatePayloadSession: machine is x86 ---------------
    10/21/14 10:48:00:136 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ______ Verify Dependency Subscribers ______
    10/21/14 10:48:00:136 | [INFO] |  | OOBE | DE |  |  |  | 11806 | BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
    10/21/14 10:48:00:136 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63}: 0 (0,0)
    10/21/14 10:48:00:136 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}: 0 (0,0)
    10/21/14 10:48:00:136 | [INFO] |  | OOBE | DE |  |  |  | 11806 | END Operation order for all session payloads: mediaGroup (requires,satisfies)
    10/21/14 10:48:00:137 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Patch Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63} can be applied to product Adobe After Effects CC 2014 Support 13.0.0.0 {A55FF34C-8AA8-4BE2-ABCC-12BE48AE8DD5}
    10/21/14 10:48:00:141 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Patch Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274} can be applied to product Adobe After Effects CC 2014 13.0.0.0 {2B22C750-5C3B-4738-B621-BA786AC7A494}
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Setting property "installSourcePath" to: /Users/adam/Library/Caches/Adobe/AAMUpdater/AdobeAfterEffects-13.0.0-Trial/13.1.1
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Setting property "mode" to: silent
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Setting property "updateManifestPath" to: /Users/adam/Library/Application Support/Adobe/AAMUpdater/1.0/Data/AdobeAfterEffects-13.0.0-Trial/13.1.1/13.1.1.xml
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Setting property "workflow" to: updater
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Overwrite property "extensionsOnly" to: 1
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Overwrite property "mode" to: silent
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Overwrite property "patchesOnly" to: 1
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Overwrite property "updateManifestPath" to: /Users/adam/Library/Application Support/Adobe/AAMUpdater/1.0/Data/AdobeAfterEffects-13.0.0-Trial/13.1.1/13.1.1.xml
    10/21/14 10:48:11:117 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Overwrite property "workflow" to: updater
    10/21/14 10:48:11:118 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Found payload actions:
    10/21/14 10:48:11:118 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Deciding what installer mode to use...
    10/21/14 10:48:11:190 | [INFO] |  | OOBE | DE |  |  |  | 11806 | BEGIN Setting requested payload actions
    10/21/14 10:48:11:191 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Value returned on lookup of payload: Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63} is: true
    10/21/14 10:48:11:191 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Action string for Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63}  is install
    10/21/14 10:48:11:191 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Value returned on lookup of payload: Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274} is: false
    10/21/14 10:48:11:191 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Action string for Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}  is install
    10/21/14 10:48:11:197 | [INFO] |  | OOBE | DE |  |  |  | 11806 | END Setting requested payload actions
    10/21/14 10:48:11:198 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Collected advanced path check information for INSTALLDIR
    10/21/14 10:48:11:198 | [INFO] |  | OOBE | DE |  |  |  | 11806 | INSTALLDIR is a well-formed path
    10/21/14 10:48:11:199 | [INFO] |  | OOBE | DE |  |  |  | 11806 | INSTALLDIR is not the root path
    10/21/14 10:48:11:199 | [INFO] |  | OOBE | DE |  |  |  | 11806 | INSTALLDIR is on a local volume
    10/21/14 10:48:11:199 | [INFO] |  | OOBE | DE |  |  |  | 11806 | INSTALLDIR is on a writable volume
    10/21/14 10:48:11:199 | [INFO] |  | OOBE | DE |  |  |  | 11806 | INSTALLDIR is not on a case sensitive volume
    10/21/14 10:48:11:199 | [INFO] |  | OOBE | DE |  |  |  | 11806 | INSTALLDIR passed path basic path validation: /Applications
    10/21/14 10:48:11:275 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [System check :{C135CD0F-ED45-4935-9B71-9D02735BD274}]
    10/21/14 10:48:11:280 | [INFO] |  | OOBE | DE |  |  |  | 11806 | In InstallPreSystemCheckProc
    10/21/14 10:48:11:280 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Custom action return code: 0
    10/21/14 10:48:11:281 | [INFO] |  | OOBE | DE |  |  |  | 11806 | :: END TIMER :: [System check :{C135CD0F-ED45-4935-9B71-9D02735BD274}] took 5 milliseconds (0.005 seconds)
    10/21/14 10:48:11:540 | [INFO] |  | OOBE | DE |  |  |  | 11806 | BEGIN InstallOperationsQueue Unordered operations
    10/21/14 10:48:11:540 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63}:  with operation repair
    10/21/14 10:48:11:540 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}:  with operation install
    10/21/14 10:48:11:540 | [INFO] |  | OOBE | DE |  |  |  | 11806 | END InstallOperationsQueue Unordered operations
    10/21/14 10:48:11:540 | [INFO] |  | OOBE | DE |  |  |  | 11806 | BEGIN InstallOperationsQueue Ordered operations
    10/21/14 10:48:11:540 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63}:  with operation repair
    10/21/14 10:48:11:540 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}:  with operation install
    10/21/14 10:48:11:540 | [INFO] |  | OOBE | DE |  |  |  | 11806 | END InstallOperationsQueue Ordered operations
    10/21/14 10:48:11:541 | [WARN] |  | OOBE | DE |  |  |  | 11806 | DW035: Patcher: Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63} has already been applied. Patchers cannot be repaired/reinstalled, skipping this patcher
    10/21/14 10:48:11:631 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Payloads passed preflight validation.
    10/21/14 10:48:11:631 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Call PreSession Custom Hook
    10/21/14 10:48:11:631 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [Pre session :{C135CD0F-ED45-4935-9B71-9D02735BD274}]
    10/21/14 10:48:11:631 | [INFO] |  | OOBE | DE |  |  |  | 11806 | In InstallSessionOpenProc
    10/21/14 10:48:11:631 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Custom action return code: 0
    10/21/14 10:48:11:631 | [INFO] |  | OOBE | DE |  |  |  | 11806 | :: END TIMER :: [Pre session :{C135CD0F-ED45-4935-9B71-9D02735BD274}] took 0 milliseconds (0 seconds)
    10/21/14 10:48:11:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 | BEGIN InstallOperationsQueue Unordered operations
    10/21/14 10:48:11:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63}:  with operation repair
    10/21/14 10:48:11:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}:  with operation install
    10/21/14 10:48:11:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 | END InstallOperationsQueue Unordered operations
    10/21/14 10:48:11:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 | BEGIN InstallOperationsQueue Ordered operations
    10/21/14 10:48:11:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63}:  with operation repair
    10/21/14 10:48:11:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 |   Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}:  with operation install
    10/21/14 10:48:11:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 | END InstallOperationsQueue Ordered operations
    10/21/14 10:48:11:857 | [WARN] |  | OOBE | DE |  |  |  | 11806 | DW035: Patcher: Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63} has already been applied. Patchers cannot be repaired/reinstalled, skipping this patcher
    10/21/14 10:48:11:857 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Skipping payload Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll 13.1.1.0 {5678CF8D-3B5F-4CC6-B150-48945A838E63} as payload is not cached
    10/21/14 10:48:12:155 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Calling the custom action code for pre-install for payload Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}
    10/21/14 10:48:12:156 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [Pre payload :{C135CD0F-ED45-4935-9B71-9D02735BD274}]
    10/21/14 10:48:12:156 | [INFO] |  | OOBE | DE |  |  |  | 11806 | In PrePayloadInstallProc
    10/21/14 10:48:12:156 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Custom action return code: 0
    10/21/14 10:48:12:156 | [INFO] |  | OOBE | DE |  |  |  | 11806 | :: END TIMER :: [Pre payload :{C135CD0F-ED45-4935-9B71-9D02735BD274}] took 0 milliseconds (0 seconds)
    10/21/14 10:48:12:156 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [Payload Operation :{C135CD0F-ED45-4935-9B71-9D02735BD274}]
    10/21/14 10:48:12:165 | [INFO] |  | OOBE | DE |  |  |  | 12205 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    10/21/14 10:48:12:165 | [INFO] |  | OOBE | DE |  |  |  | 12205 | Installer Operation: PayloadInstaller
    10/21/14 10:48:12:165 | [INFO] |  | OOBE | DE |  |  |  | 12205 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    10/21/14 10:48:12:165 | [INFO] |  | OOBE | DE |  |  |  | 12205 | Request to install payload
    10/21/14 10:48:12:193 | [INFO] |  | OOBE | DE |  |  |  | 12205 | Payload Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}: Calling ARKEngine from path /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources
    10/21/14 10:48:42:884 | [INFO] |  | OOBE | DE |  |  |  | 12205 | Extracting assets complete. Number assets: 1
    10/21/14 10:48:42:885 | [INFO] |  | OOBE | DE |  |  |  | 12205 | CustomizedPatch property not found in database
    10/21/14 10:48:43:146 | [INFO] |  | OOBE | DE |  |  |  | 12205 | Beginning installation for payload at /Users/adam/Library/Caches/Adobe/AAMUpdater/AdobeAfterEffects-13.0.0-Trial/13.1.1/payload s/AdobeAfterEffects13AllTrial-101014102412/Install.db
    10/21/14 10:48:43:454 | [ERROR] |  | OOBE | DE |  |  |  | 12205 | DS015: Unable to read symlink target of source file "/Applications/Adobe After Effects CC 2014/Plug-ins/Effects/mochaAE/(Mocha Support)/mocha AE CC.app/Contents/MacOS/mediaioserver.app/Contents/CodeResources"(Seq 212)
    10/21/14 10:48:43:454 | [WARN] |  | OOBE | DE |  |  |  | 12205 | DW063: Command ARKCopySymlinkCommand failed.(Seq 212)
    10/21/14 10:48:43:454 | [INFO] |  | OOBE | DE |  |  |  | 12205 | Completing installation for payload at /Users/adam/Library/Caches/Adobe/AAMUpdater/AdobeAfterEffects-13.0.0-Trial/13.1.1/payload s/AdobeAfterEffects13AllTrial-101014102412/Install.db
    10/21/14 10:48:51:624 | [INFO] |  | OOBE | DE |  |  |  | 11806 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 2 =*=*=*=*=*=*=*=*=*=*=*=*=*
    10/21/14 10:48:51:624 | [INFO] |  | OOBE | DE |  |  |  | 11806 | :: END TIMER :: [Payload Operation :{C135CD0F-ED45-4935-9B71-9D02735BD274}] took 39467 milliseconds (39.467 seconds) DTR = 8703.17 KBPS (8.49919 MBPS)
    10/21/14 10:48:51:632 | [INFO] |  | OOBE | DE |  |  |  | 11806 | User specified overrideFile:
    10/21/14 10:48:51:637 | [INFO] |  | OOBE | DE |  |  |  | 11806 | The csu inventory was not updated for payload Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}, value of local var is -1
    10/21/14 10:48:51:637 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Calling the ROLLBACK custom action code for pre-install for payload Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274}
    10/21/14 10:48:51:638 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [Pre payload :{C135CD0F-ED45-4935-9B71-9D02735BD274}]
    10/21/14 10:48:51:638 | [INFO] |  | OOBE | DE |  |  |  | 11806 | In PrePayloadInstallProc
    10/21/14 10:48:51:638 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Custom action return code: 0
    10/21/14 10:48:51:638 | [INFO] |  | OOBE | DE |  |  |  | 11806 | :: END TIMER :: [Pre payload :{C135CD0F-ED45-4935-9B71-9D02735BD274}] took 0 milliseconds (0 seconds)
    10/21/14 10:48:51:868 | [INFO] |  | OOBE | DE |  |  |  | 11806 | No operation.  We're done:
    10/21/14 10:48:53:891 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Total components installed: 0
    10/21/14 10:48:53:891 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Total components repaired: 0
    10/21/14 10:48:53:891 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Total components removed: 0
    10/21/14 10:48:53:891 | [WARN] |  | OOBE | DE |  |  |  | 11806 | DW050: The following payload errors were found during install:
    10/21/14 10:48:53:891 | [WARN] |  | OOBE | DE |  |  |  | 11806 | DW050:  - Adobe After Effects CC 2014 Support_13.1.1_AdobeAfterEffects13SupportAll: Patch already installed
    10/21/14 10:48:53:891 | [WARN] |  | OOBE | DE |  |  |  | 11806 | DW050:  - Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial: Install failed
    10/21/14 10:48:53:891 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Call PostSession Custom Hook
    10/21/14 10:48:53:891 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ::START TIMER:: [Post session :{C135CD0F-ED45-4935-9B71-9D02735BD274}]
    10/21/14 10:48:53:892 | [INFO] |  | OOBE | DE |  |  |  | 11806 | In InstallSessionCloseProc
    10/21/14 10:48:53:892 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Custom action return code: 0
    10/21/14 10:48:53:892 | [INFO] |  | OOBE | DE |  |  |  | 11806 | :: END TIMER :: [Post session :{C135CD0F-ED45-4935-9B71-9D02735BD274}] took 0 milliseconds (0 seconds)
    10/21/14 10:48:53:892 | [INFO] |  | OOBE | DE |  |  |  | 11806 | :: END TIMER :: [Total Timer] took 61758 milliseconds (61.758 seconds) DTR = 5778.75 KBPS (5.64331 MBPS)
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | -------------------------------------- Summary --------------------------------------
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 |  - 0 fatal error(s), 1 error(s)
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | OSX version: 10.7.5 
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 |
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ----------- Payload: Adobe After Effects CC 2014_13.1.1_AdobeAfterEffects13AllTrial 13.1.1.0 {C135CD0F-ED45-4935-9B71-9D02735BD274} -----------
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | ERROR: DS015: Unable to read symlink target of source file "/Applications/Adobe After Effects CC 2014/Plug-ins/Effects/mochaAE/(Mocha Support)/mocha AE CC.app/Contents/MacOS/mediaioserver.app/Contents/CodeResources"(Seq 212)
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 |
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Please search the above error string(s) to find when the error occurred.
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | These errors resulted in installer Exit Code mentioned below.
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | -------------------------------------------------------------------------------------
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 |
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Exit Code: 7 - Unable to complete Silent workflow.
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | Please see specific errors for troubleshooting. For example, ERROR: DS015 ...
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | END - Installer Session
    10/21/14 10:48:54:895 | [INFO] |  | OOBE | DE |  |  |  | 11806 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

  • Creating a transition (exploding text?)

    Hi
    A novice here. I am working on my first banner ad, and I've hit a snag. What I want to achieve is an exploding text effect, though I may have bitten off more than I can chew the way I have done it so far.
    I started the first frame with a bit of text, the second frame had two bits, third frame 4 bits, and then I loaded the spray tool and kept adding each frame until the stage was almost full. This was the effect I wanted to achieve, so far so good. But then I want to make all those words explode off the stage again. I tried breaking apart the text and dragging them off one by one, but because I used the spray tool, there was so many of them, it took ages, and in the end I didn't get the desired effect. I've played around with shape tweening, doing a similar thing, but only one word was animated to bounce off the stage. Please dont' tell me I need to do it for each and every word in it's own layer--there's a hundred or so of them. (Courteousy of the massive dump of the spray tool-great effect, but now I want it gone!)
    So, I wonder is there a way I can do it so that I animate only a few of them to explode, but then copy and paste this on several layers so that it gives the effect of a whole lot of words exploding off the page?
    I am not married to the explosion idea, I just thought it would be effective for my next key frame which is also a word (not sure yet how I am going to bring that in). If there are other ways I can effectively move the text pile on so that the next phrase can enter the stage. I don't particularly want to use a fade out effect, it's not dramatic enough--the text that's piled up is a dollar amount, (I mention this to trigger ideas ), and fading won't work. Crumbling from top to bottom might be okay, but I don't know how to do this. If anyone has ideas on how I can make the text explode (even if it means going back and creating the text pile again without using the spray tool, if that's the problem). Or, another way I can transition to the next frame. Sorry that this is so long.
    thanks
    cheers
    Donna

    Waah! I'm too new, I don't know AS.
    thanks
    cheers
    Donna

  • Recreate animated text effect?

    I am working on a video with mostly text, like the one below. I want to know how to recreate some of the effect used here, like when the "4" slides upwards and vertical and horizontal lines extend from it, or the point at 0:41 when the words are all connected by the line.
    https://www.youtube.com/watch?v=BgLxv-f9mYs

    That example was done in FCP7. These days, those types of text effects, most of which can be done in FCPX, are probably better (at least easier) done in Motion. You *can* create a Basic Text "4" and animate the bars with Shape generators, etc. but it's a common enough use of the #4 that I put it together in Motion for you.
    You can download it here:
    http://sight-creations.com/fxexchange/sc_divideby4.zip
    You can:
    Animate all 3 strokes ("Crossbar", horizontal and vertical) from 0% to 100% (for horiz and vert - they will go far enough off the screen for you to create a border at the upper left corner of 16:9 aspect video.
    Use the onscreen control to position the intersection of the vertical and horizontal strokes (animated via keyframes).
    Colorize
    Scale (relative to the OSC)
    Rotate (relative to the OSC)
    Shear (tilt) (relative to the OSC)
    Fade with Opacity
    Blend into the storyline media (background) using Blend Mode
    Apply Drop Shadow

Maybe you are looking for