Adding Bubble text effect

Hi there
Does anyone know if and how you can add bubble text effects to still images on FCE? Or is there a program out there that you can do it in and then import into FCE?
Thanks

heiwhea wrote:
.. Does anyone know if and how you can add bubble text effects to still images on FCE? ..
use any paint-app (Photoshop/Elements, Pixelmator, Graficconverter, ... ) which supports transparency; paint your bubble; export as png or tiff (=which keeps the background transparent); add that to your project/timeline.. with some keyframes, you can even 'popp' it into scenery (zoom to zil, a few frames later zoom it too big, a few frames later final size.....)
I'm using the Comic-maker Comiclife http://plasq.com/comiclife/ for creating some very comic-like bubbles .. I have to export the grafics and prepare in Pixelmator ..

Similar Messages

  • Imported MP4 HD vid. Added text effects. Want to reexport in same quality. How?

    I own a:
    Model #: p6140f
    Product #: NP192AA-ABA
    Software Build #: 93NAv6PrA2
    PCBRAND: HP Pavilion
    I imported an MP4 HD (1080p) video. I then added some text effect layers, and want to export the comp in 1080p as well. Yet, when I try File > Export > MPEG-4 I always get low quality, audioless files.
    Comp settings: Pixel Aspect Ratio- HD 1080/DVCPRO HD 720 (1.33), Resolution - Full (1920 x 1080, 7.9 MB 8bpc frame.
    When I export to MP4, I have the option of file format: MP4 or MP4 (ISMA).
    When I select MP4, My video format choices are: None, MPEG-4 Basic, MPEG-4 Improved or H.264. Data Rate: Optional (256 kbt/s stardard). Image Size: anywhere from 160 x 120, 176 x 144 QCIF, or what I want, 1920 x 1080 HD. Frame Rate: 8-60 or custom.
    When I select MP4 (ISMA). My video format choices are: None, MPEG-4 Basic or MPEG-4 Improved. Data Rate: Again Optional (256 kbt/s stardard). Image Size: anywhere from 160 x 120 to 352 x 288 CIF. Frame Rate: 8-30 or custom.
    Additionally, none of these MP4 files feature sound either.
    What is going on here, and how can I correct these problems?
    If you need more info don't hesitate to ask!
    Thanks,
    Yakshire

    how can I correct these problems?
    You need to read the help, plain and simple:
    Basics of rendering and exporting
    You don't use Export, you use the Render Queue and Adobe's native H.264/ MP4 encoders.
    Mylenium

  • Edge Text Effects in Chrome not Working - from Dan Carr / Inspire Mag article

    I've been working with the tutorial in the September issue of Adobe Inspire to create text effects with Edge Animate - see link:
    http://www.adobe.com/inspire/2013/09/edge-text-effects.html
    I can get it to work well in IE and Firefox but nothing much happens in Chrome.
    Anyone any idea where I may be going wrong?
    My problem is with the section specifically relating to using Edge Animate - the other parts of the tutorial work OK in Chrome when using a plain HTML file but I'm interested mainly in adding the text effects to existing Edge compositions.

    Here's an example based on the tutorial - just open in the different browsers to see the problem:
    http://www.wizinnovation.com/edge/boardWithSVG.html
    DDcreams mentions a problem with webkit browsers which I expect is correct - I have no idea where to start to try and fix it though!
    Here's a paste of the edgeActions:
    * Adobe Edge Animate Composition Actions
    * Edit this file with caution, being careful to preserve
    * function signatures and comments starting with 'Edge' to maintain the
    * ability to interact with these actions from within Adobe Edge Animate
    (function($, Edge, compId){
    var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes
       //Edge symbol: 'stage'
       (function(symbolName) {
          Symbol.bindElementAction(compId, symbolName, "document", "compositionReady", function(sym, e) {
             // insert code to be run when the composition is fully loaded here
             // Load text animation JS
             yepnope({
                       nope:[
                       'libs/raphael/raphael-min.js',
                       'libs/textfx/Text.js',
                       'libs/textfx/svg/SVG.js',
                       'libs/textfx/svg/SVGText.js',
                       'libs/textfx/svg/SVGTextBlock.js'
                       complete: init
             var textAnimation = {
                       params: {
                                 fontStyles: {
                                           'font-family': 'Arial, serif',
                                           'font-size': 60,
                                           'color': '#9080c7',
                                           'stroke': '#fff',
                                           'stroke-width': 1
                                 letterSpacing: -2,
                                 wordSpacing: 24,
                                 easing: 'backIn',
                                 duration: 550,
                                 delay: 15,
                                 type: 'letters'
                       canvas: null,
                       text: null,
                       addCanvas: function(div){
                                 this.canvas=new Text.SVG(div);
                       addText: function(txt, styles, params){
                                 $.extend(this.params.fontStyles, styles);
                                 $.extend(this.params, params);
                                 this.text = this.canvas.addText(txt, this.params);
                       animate: function(type){
                                 this.text.animate(type);
             sym.setVariable("textAnimation", textAnimation);
             // Draw the text animation
             function init(){
                       textAnimation.addCanvas(sym.$("text_animation"));
                       sym.play(0);
          //Edge binding end
          Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 0, function(sym, e) {
             // insert code here
             var styles = {
                 "font-family": "Microgramma, Arial"
              sym.getVariable("textAnimation").addText("Text Goes Here!", styles);
              sym.getVariable("textAnimation").animate("slideLeftIn");       
          //Edge binding end
          Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 2000, function(sym, e) {
             // insert code here
              sym.getVariable("textAnimation").animate("slideRightOut");
          //Edge binding end
          Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 4000, function(sym, e) {
             // insert code here
            var styles = {
                 "font-family": "Eurostyles, Arial"
              sym.getVariable("textAnimation").addText("Some more text!", styles);
              sym.getVariable("textAnimation").animate("zoomBigIn");  
          //Edge binding end
          Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 6000, function(sym, e) {
             // insert code here
              sym.getVariable("textAnimation").animate("zoomBigOut");  
          //Edge binding end
          Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 8000, function(sym, e) {
             // insert code here
              sym.play(0);
          //Edge binding end
       })("stage");
       //Edge symbol end:'stage'
       //=========================================================
       //Edge symbol: 'text_animation'
       (function(symbolName) {  
       })("text_animation");
       //Edge symbol end:'text_animation'
    })(jQuery, AdobeEdge, "EDGE-26783744");

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

  • Muse: Issue: Text Effects options (Drop Shadow, etc) are always disabled.

    Hello,
    I am a new Muse user and I have been using the Learn Tutorials here on helpx.adobe.com to teach myself Muse.
    I have a strange problem. When following through the "Apply Effects to Text" tutorial at: Adding effects to text | Adobe Muse CC tutorials, the options to add a drop shadow are not enabled. On advice from folks on Twitter, I tried the same using System Fonts, Web Fonts and Web Safe fonts. None of them seem to work.
    I am attaching a video capture of the issue.
    Please help :-(
    Adobe Muse CC version 2014.1.0.375 CL 785695 (PC)
    Message was edited by: Sujay Sarma
    Change: Added Muse Version info

    That's worse. If I set Stroke to 1 (you can only do that on the Text Frame and not the text itself), then the Text Effects do get enabled. BUT, the effect is applied to the entire text frame instead of just the text. See this:
    I want the drop shadow for the text not the frame (like how Photoshop does it).

  • Shape Layer to 3D Text Effect

    Hey guys,
    I'm trying to figure out if there is a way that I can create a shape layer to and give it the 3D text effect.  To further explain, I created some text in Photoshop, but for it to be stylized, I did it with the pen tool so my words are shape layers instead of text layers.  Im also using CS6 normal and not extended, so I don't have that 3D option at the top.  If there is a method for this, I would greatly appreciate the help.  Thank you!
    Examples of what I'm going for:
    http://maxcdn.photoshoplady.com/wp-content/uploads/2012/11/Clean-3D-Text-Effect-Creation-u sing-CS6-L.png
    http://vanimg.s3.amazonaws.com/0613-text-15.jpg

    I didn't look at your example until after I made the demo image, but you could work it to produce that effect.
    What we used to make 3D text before we had Photoshop 3D tools, was Free Transform Step & Repeat.  You'll find a bunch of tutorials if you look, but basically:
    Make your front shape, make a copy and rasterize the copy. Hide the Shape because you don't need it any more.
    Copy your rasterized shape layer.
    Free Transform the copy, and use the size and movement values in the options bar.  For my demo I moved it up a couple of pixels, and resized to 98% horizontally and vertically.
    Hold down Shift Alt Ctrl (Shift Opt Cmd) and keep hitting the t key until you have sufficient depth.  You end up with a lot of layers.  My size and movement was a bit course, which you can see from the jaggies on the bottom left of the '3' character.
    Select all the 3D layers, and go Layers > Arrange > reverse (you just want to bring your initial layer to the top of the stack.
    Select all the other 3D layers and merge them
    Give the initial layer a different colour or tone.
    You'll want to add some shading, so make a new layer above the merged layers, Ctrl click the merged layers to load the selection, and add a layer mask to the new layer (called shading in my image)
    Unlink the layer mask.  This is so we can blur our shading without bleeding past the text boundries.
    I prefer to paint in the shading because you can blur and adjust opacity.  Paint it in with a hard brush for accuracy, and use a LOT of blur (Gaussian 10)
    You might need multiple layers and selections to control the different faces, but I just finished off with the Dodge tool.
    Having the front face and body on different layers, means you can mess about with layer styles, or colorize with a hue/saturation layer.
    A bit more dodge and burn with some careful masking and perhaps a curves layer set to luminosity...  You have the building blocks and can keep adding to them.

  • Just tried adding some text to a video (MP4) how best to optimise?

    Hi,
    Any suggestions on this?
    I imported a short MP4 into CS6, then added some text diplaying on part of the timeline so the text fades in, displays, then fades out, all well and good.
    I then re-saved it as a new MP4 I'd like to know if it is possible to optimise the file at all. (never tried any of this stuff before)
    Before anyone suggests anything fancy, I ONLY have access to Photoshop CS6. So If I need other software then that is no help.
    Any suggestions.
    Thanks, McP

    Sorry, should have been clearer.
    Optimise the file size in bytes, obviously it is possible to create PSDs and other format images etc then save for web.. Does the same apply to MP4s when using PS6?
    Can the size of an MP4 file be reduced in any way, subsequent to me adding extra time lines that have text in them?
    And by fancy, I meant After effects and other Adobe suite progs, as mentioned I only have PS6. Never tried getting to know MP4 manipulation in PS before, so not aware of free things either..
    McP

  • Title/text effects just for one line?

    Hi!
    As far as I understood do the PE11 title/text effects work just for one line of text.
    (1) How can I produce more lines text-effects with PE11 (and more complex, like 3D-animations)?
    (2) If this is not possible, do you know any free/beginners software for doing that?
    I look forward to reading your answers!
    Best wishes,
    Ronald

    Ronald,
    You are most welcome.
    I am not sure what the limitation to one line of text is related to - the program coding? The animation algorithms? However, with a bit of planning, there are several ways around that limitation, but it throws people, when they first encounter it.
    This article also has some tips on using Titler in Premiere (both Pro and Elements), and I have added some Adobe TV tutorials. Note: they are done in PrPro, so the interfaces will look differently, plus PrPro's Titler has some additional functions, that are not yet in PrE. Still, the basics are all the same, and I think that with a bit of interpolation, even the PrPro tutorials will be useful: http://forums.adobe.com/thread/1131177
    Good luck, and happy titling,
    Hunt

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

  • 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 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

  • Text in VA02 - how to find the user who added the text

    Hi
    The user is adding text in the sales order through VA02, sometime after creating the order. This is not making any changes to the existing data, but adding the text in Header Text.
    When trying to findout who made the addition of text (not changes) from VA03 - menu - environment - changes ---it is not showing any details regarding this. Please guide me how to find out the user who made the addition of text in sales order through VA02.
    Thanks,
    Ravi

    Hi Ravi,
              I think there is no option available to find the name of the person who added text to the sales order.
             If the person who creates sales order, should also maintains the text we can find the name who created sales order. I am sure that u might be knowing the way.
           Still for the benefit of friends who r not aware, in the sales order> GOTO>Header data--> Sales tab.
    Regards,
    Ravi Duggirala.

  • Adding alt text tags in InDesign (and Acrobat Pro)

    I am having real difficulty adding alternative text tags. I created an INDD doc with rollover buttons linked to URLs firstly in InDesign CS4. I couldn't add alt text tags in CS4 so I then tried to add them in Acrobat X Pro but failed. Acrobat keeps wanting to class the PDF as a form. I then installed InDesign CS6 from the cloud and added alt text to the rollover buttons via object export options. However, these do not show when I export to PDF.
    Can someone help me add alt text to my rollover buttons in my interactive PDF either in InDesign CS6 or in Acrobat Pro after I export it?

    In InDesign CS6, you just need to add descriptions to buttons. This is done in the buttons and forms panel:
    This is the alt text in Acrobat when you roll over the button:
    Hope that helps!

  • Text Effects in Bridge wont attach to text layers in AE *Please help

    ** Please Help **
    short version
    I have read the AE help and it says to just double click the preset I want and it will attach to the text in AE, but it doesnt work. What do I do?
    Long version
    Ok, I am trying to use the built in animations that are located in the text folder inside bridge. While in AE I make a new text layer and type in the text, then I goto the EFFECTS & PRESETS fly out menu and Choose Browse presets, This will take you to the contents folder in Bridge, For instance I click on the 3d text folder to open it and view all of the preset text animations. If you click a sample Icon one time it will show you what to expect in Bridge, IF you double click it, it is supposed to attach that preset to your text layer and transfer that animation to the text layer in AE. Well I cant get it to work, It wont attach the preset to my text in the text layer of AE. Please tell me what I am doing wrong. Please help me figure this out. I have search the AE help files as well as the bridge help, with no answers.

    Jonas, thank you for a work around, using the bridge method would be nicer, but the apply animation preset works, I just have to open bridge so I can preview the text effect I want to apply. Main thing is I got it to work. Now to figure out why bridge and AE aren't talking.

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

Maybe you are looking for

  • Call Event from One View to another View

    Hi All, I have 2 views in my Webdynpro application .View 1 has a input field and View2 has a button. When the user enters a value in the input field and clicks on Enter, i want to call the button action in View2. I created Navigation link from view1

  • .mp3 files and Internet Explorer

    hey, i uploaded an mp3 music on my website and i changed the html code to hide the controller and play the music automatically. on pc's, the file plays like its supposed to with firefox but not with Internet Explorer. I know it might be because the p

  • All LOV's for Currency prompt not showing in Webi prompts

    Hello Experts, I have a scenario. My BW systems are undergoing upgrade. SO one is on 7.1 and the other on 7.3 I have Business Objects BI 4.0,SP2 environments on top of both and MDX universes based on top of Bex queries. When i point my universe to BW

  • Is there a size limit on the iPod for the song database file ?

    I have been running into the same issue for the last 2 weeks: Once I exceed 110 GB on my iPod Classic 160 GB, iTunes is no longer able to update the database file on the iPod. When clicking (on the iPod) on Settings/About, the iPod displays the wrong

  • Usage of MRP Procedures in Consumption Based Planning during Implementation

    We have following procedures in CBP: 1. Reorder Point Planning- Manual and Automatic 2. Forecast based Planning 3. Time phased Planning. In SAP implementations, which of these procedure is mostly used in companies in real time. Though the CBP plannin