Shape/Path - transform/convert -bug?

I have noticed a few subtle UI changes in PShop CC -some of which seem like bugs. Here's one:
When I apply "transform" to a newly created Elipse path (which has been pre-specified as a path), I get this prompt:
"This operation will turn a live shape into a regular path. Continue?"
But the elipse I have created is NOT a shape. The Path option has alrady been selected. Yes, this is a very minor quibble, but as a former beta (and alpha) tester, I tend to be compulsively thorough! OTOH, perhaps there is a user error on my part. I did double check that new paths created with elipse tool are spec'd as "paths".
thanks

There are some issues with the new shapes.  I'm not 100% sure on this but they now have "Live shapes" where you can set some of the shape/path properties like how rounded the curves are on a rounded rectangle.  So I guess the elipse also has some "Live" properties.  However, once you transform the shape/path, you lose the ability to edit those properties and the shape/path becomes a regualar shape/path.  I suppose it would be good for them to specify in the alert what exactly on what you working - path or shape.

Similar Messages

  • Convert Mask path to shape path?

    Can I convert a Mask path into a shape path in AECS4?
    I am running into a problem with resizing my layers - I am animating a signature, and part of it was done as a shape, part of it as a mask that 'reveals' a signature (someone else created the original) when I try to enlarge the whole thing, only the shape portion enlarges without artifacting (vector) the mask portion gets blocky and ugly if enlarged.

    The After Effects CC (12.2) update makes creating Bezier paths easier and more obvious.
    option for creating shape layers based on Bezier paths:
    When a shape tool (Rectangle, Rounded Rectangle, Polygon, Star, or Ellipse tool) is active, you can use the new Bezier Path option in the Tools panel to create a new shape based on a Bezier path, as opposed to the default of creating a new shape based on a parametric path. Holding the Alt (Windows) or Option (Mac OS) key while drawing a shape causes the opposite behavior—i.e., if the Bezier Path option is enabled, holding the Alt or Option key causes the shape tool to create a parametric path; if the Bezier Path option is disabled, holding the Alt or Option key causes the shape tool to create a Bezier path.
    command for converting a parametric shape layer path to a Bezier path:
    You can convert a parametric path to a Bezier path after the parametric path has already been created by context-clicking (right-clicking or Control-clicking on Mac OS) the property group for the parametric path (e.g., Rectangle Path 1) and choosing the Convert To Bezier Path command from the context menu. If the parametric path is animated (keyframed), the converted Bezier path is a static path based on the parametric path at the current time; keyframes are lost.
    IMPORTANT: When you use the Convert To Bezier Path command to convert a parametric shape path to a Bezier shape path, the Bezier path that is created does not animate well (i.e., interpolation between paths behaves strangely and unpredictably). This is related to path direction and how transformations are stored. For now, you should not use these converted paths for animated paths (interpolation between paths); but, if you do want to try, you may be able to work around the issues by reversing the path before conversion.

  • How to retrieve "KeyValue" from multiple Shape paths then "SetValue" to Mask path Keyframes?

    Hello AEScriptsComm.,..
    i have one question (hopefully the tutorer will answer soon), which is the goal and reason i'm learning ExtendScripts:
    I have a few dozen Adobe Illustrator, imported Shape Layers with paths "Created..from Vector Layers" in AEffects.
    In order to use a .jsxbin script to change every path to the same number of verticies for animating, i must 1st convert them to Keyframes on the same Mask Path property.
    1) i hoped to please be shown\sent an example showing how to,..
    a) Get\Retrieve "KeyValue" from multiple, single (Shape Layers):Outlines > Contents > Group > Path > Path as shown in screenshot "4-CreateShapeFromVecLyr2Outlines.JPG",
    and then,..
    b) "SetValue" from those paths into Mask > Mask Path keyframes also in screenshot "1-ExtendScript_ShapePathsTOMaskPathKeyframes.JPG"?
    Really appreciate any help soon as time allows,
    Jeff

    Hello Xavier,
                       esp. with my limited experience i can't determine how your concise script works.
    Because it 1st errors  esp. with undefines  i'm thinking at best its incomplete (or algorithm) to give me the gist and i'm to fill in the blanks, which i am doing with the sort of working code example pasted below.
    Its written with every  definition, declaration and initialization completed, so a novice like me can read the manuals, rev. eng. pertinant script(s), then with fragmented code and understanding quickly connecting to form a complete custom script, as we've all done.
    like this:
    var comp = app.project.activeItem:
    var layer  = comp.layers.addSolid([1,1,1,], layerName, comp.width, comp.height, 1.0, comp,duration);
    therefore,..
    var CompLayerSolid = app.project.activeItem.layers.addSolid([1,1,1,], layerName, comp.width, comp.height, 1.0, comp,duration);
    ..then with such direct access in other essentials, i can substitute compatible properties, methods,  parameters etc. and remaining code that affect the layer objects i need to control simultaneously. Also thereby learning more complex code quickly enough to use.
    Only, i hoped to save time here by those already familiar.
      But by comparison your script without declarations or many references in AE's CS6 Scripting Guide and online, i can't decipher or understand,
    although you wrote this more complete segment at CCow:
    "shapeLayer.content.addProperty("ADBE Vector Graphic - Fill");",
    ..in which is the addProperty i 1st looked for in your script after erroring with "ShapeLayer is undefined"
    But i could'nt find a ref. to either .content or content. anywhere in ExtendScript, nor "targetLayer.mask", and "targetLayer" i found once in ref. to ExtendScript as an AE layer name. So perhaps their your variables?, you see i can't determine or use.
    i don't know that was'nt meant, maybe a bit to tell me do my own research?,  no offence, can't confirm that without reply, hope you will, but my research is why i'm here and your probably advanced script could only help with your assistance.
    Thanks anyway,
    Cheers.
    function()
    var comp = app.project.activeItem;
    var masksLayer = comp.selectedLayers[0];
    var masksGroup = masksLayer.property("ADBE Mask Parade");
    app.beginUndoGroup(rd_MasksToShapesData.scriptName);
    // Create an empty shape lay
    // Get the mask layer's pixel aspect; if layer has no source, use comp's pixel aspect
    var pixelAspect = (masksLayer.source != null) ? masksLayer.source.pixelAspect : 1.0; //copixelAspect;
    // Iterate over the masks layer's masks, converting their paths to shape paths
    var mask, maskPath, vertices;
    for (var m=1; m<=masksGroup.numProperties; m++)
    var suffix = " Shapes";
    var shapeLayer = comp.layers.addShape();
    shapeLayer.name = masksLayer.name.substr(0,31-suffix.length) + suffix;
    shapeLayer.moveBefore(masksLayer);
    var shapeLayerContents = shapeLayer.property("ADBE Root Vectors Group");
    var shapeGroup = shapeLayerContents; //.addProperty("ADBE Vector Group");
    //shapeGroup.name = "Masks";
    var shapePathGroup, shapePath, shapePathData;
    // Get mask info
    mask = masksGroup.property(m);
    maskPath = mask.property("ADBE Mask Shape");
    // Create new shape path using mask info
    shapePathGroup = shapeGroup.addProperty("ADBE Vector Shape - Group");
    shapePathGroup.name = mask.name;
    shapePath = shapePathGroup.property("ADBE Vector Shape");
    shapePathData = new Shape();
    // ...adjust mask vertices (x axis) by pixel aspect
    vertices = new Array();
    for (var v=0; v<maskPath.value.vertices.length; v++){
    vertices[vertices.length] = [maskPath.value.vertices[v][0] * pixelAspect, maskPath.value.vertices[v][1]];
    shapePathData.vertices = vertices;
    shapePathData.inTangents = maskPath.value.inTangents;
    shapePathData.outTangents = maskPath.value.outTangents;
    shapePathData.closed = maskPath.value.closed;
    shapePath.setValue(shapePathData);
    shapeLayer.transform.anchorPoint.setValue(masksLayer.transform.anchorPoint.value);
    shapeLayer.transform.position.setValue(masksLayer.transform.position.value);
    shapeLayer.transform.scale.setValue(masksLayer.transform.scale.value);
    if (masksLayer.threeDLayer)
    shapeLayer.threeDLayer = true;
    shapeLayer.transform.xRotation.setValue(masksLayer.transform.xRotation.value);
    shapeLayer.transform.yRotation.setValue(masksLayer.transform.yRotation.value);
    shapeLayer.transform.zRotation.setValue(masksLayer.transform.zRotation.value);
    shapeLayer.transform.orientation.setValue(masksLayer.transform.orientation.value);
    else
    shapeLayer.transform.rotation.setValue(masksLayer.transform.rotation.value);
    shapeLayer.transform.opacity.setValue(masksLayer.transform.opacity.value);
    // Match the mask layer's transfor
    // Mute the mask layer
    masksLayer.enabled = false;
    app.endUndoGroup();

  • [svn:fx-trunk] 9183: Transform matrix bug fix

    Revision: 9183
    Author:   [email protected]
    Date:     2009-08-07 15:25:44 -0700 (Fri, 07 Aug 2009)
    Log Message:
    Transform matrix bug fix
    http://bugs.adobe.com/jira/browse/SDK-22390 - Color transform is incorrectly applied in MXML Graphics
    For a component or graphic, specifying a transform without an explicit matrix declaration was overriding the convenience transform properties.
    The new behavior is to only apply the transform?\226?\128?\153s matrix to the component or graphic if it was explicitly specified.
    QE notes: Add test case
    Doc notes: Explain that transform matrix will only apply if explicitly set
    Bugs: SDK-22390
    Reviewer: Glenn
    Tests run: spark primitives
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22390
        http://bugs.adobe.com/jira/browse/SDK-22390
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/geom/Transform.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/supportClasses/GraphicEleme nt.as

    error dateField not selecion date 27/11/2002 ?
    This is bug flex 3 ?
    thanks

  • [svn:fx-trunk] 9188: Transform matrix bug fix

    Revision: 9188
    Author:   [email protected]
    Date:     2009-08-07 16:07:44 -0700 (Fri, 07 Aug 2009)
    Log Message:
    Transform matrix bug fix
    Missing file for revision 9183
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/UIMovieClip.as

    error dateField not selecion date 27/11/2002 ?
    This is bug flex 3 ?
    thanks

  • Reference a Shape Path as Text Path

    Hi!
    Is it possible to reference a shape path from a shape layer as the path for the text to follow?
    regards
    Henning

    I think you simply want to use a shape layer's path as a path for your text to follow.
    If there is no scaling applied to the shape layer then you can copy the path by setting a keyframe for it then start a mask on your text layer using the pen tool and putting the first point anywhere and then doing a paste. You can now reveal the text layer's properties and set the path options to the new path. This works best if you use the pen tool to draw your shape layer path, then add a text layer using New>Text Layer and typing the text. If you just click in the frame and start typing or you move or scale your shape layer you will run into position problems because the paths will not line up.
    If you use the shape tools (rectangle, polygon, etc.,) you will have to convert the shape to a path before you start. You can do this by right clicking on the path. Here again, if your path is not in the center of the comp you'll have position problems that you will have to adjust. The most efficient workflow if you were using the shape tools would be to hold down the Alt/Option key before you start dragging out your shape so that it creates a bezier path instead of a shape. This would solve position problems. If you have already created the shape layer with a shape tool then center it in the comp and parent the shape layer to the text layer so you can reposition them both later.

  • Can I isolate part of a shape path to simplify if?

    Hello, I want to simplify part of a complex shape.  Is it possible to isolate part of a shape path and simplify it, leaving the rest of the shape with the original number of anchor points? Thank you

    drive,
    Maybe redrawing it is the solution.
    Always keep (a copy of) the original artwork before you start destroying it, hidden or locked or elsewhere.
    You may plunge (deeper) into using the Pen Tool.
    In this case, you may (Smart Guides are your friends):
    0) Lock the path;
    1) ClickDrag from one of the end Anchor Points (Smart Guides say anchor when you are there), dragging the Handle in the direction of the path;
    2) ClickDrag from the other end Anchor Point, away from the path, dragging the Handle in the direction of the path.
    You may drag back and forth in 2), and you may switch to the Direct Selection Tool and ClickDrag either Anchor Point to adjust afterwards.
    This may be enough, depending on the shape, of course.

  • Add an inertia script to mask/shape-path keyframes?

    anyone knows how to add an inertia script to mask/shape-path keyframes? OR a workaround that would yield similar results?
    thanks
    manojit

    Since no answer seems to be forthcoming would you recommend that this be a manual test?
    Thanks,
    Eric

  • Crash while transforming Shape Layers in group bug report

    I've had a consistent crash today while trying to scale a group of simple shape layers: specifically, 2 x 2px strokes making a simple bevelled edge, contained in a layer group folder.
    What happens:
    1. have two vector shape layers in a layer group
    2. Select and try to scale vertically
    3. Set height to 4 pixels
    4. Crash.
    What should happen?
    Those simple shape layers should scale with no trouble at all. For some reason it causes PS to crash every time.
    I can do a free transform to any vector object or shape layer and scale with no problem. If I set a height or width in the tool bar it will crash.
    The vector objects do not have any effects, styles or even strokes. They are just simple filled vector shapes approximately 2 px H X 20 px W.
    Processor  2 x 2.4 GHz Quad-Core Intel Xeon
    Memory  24 GB 1066 MHz DDR3 ECC
    Graphics  ATI Radeon HD 5870 1024 MB
    Software  Mac OS X Lion 10.7.3 (11D2001)

    Hi Pete -
    I apologize for the soundtrack... it was my first time using Jing and I was trying to capture the bug while I was trying to get two jobs out the door!
    That was Ministry, btw. I find it relaxing and soothing.
    All my hardware, software, graphics cards and drivers are up to date. My machine (the one I'm working on currently) is a new Mac Pro (all the specs are pasted at the end of this post). The issue also appeared on my old Mac Pro Quad Core, 2 x 2.66 GHz.
    I've had the issue happen in multiple documents, both existing and new. For awhile it only happened when changing the height. Then it happened a few times when adding a specified width. It hasn't happened at when transforming manually by dragging, only when entering a value to the height or width fields.
    After I sent the video last night I was able to transform again using the same group of shape layers, in the same document, and it worked consistently several times. At the time I wasn't trying to reproduce the bug, I was just working, but when it worked I had to try it a few times to see what would happen and it worked.
    Today I remembered one setting that I changed and checked it out. In prefs, one of the new options, "Snap Vector Tools and Transforms to Pixel Grid", was originally checked/on. A couple days ago I had to turn it off while setting up some UI graphics for an iOS app. I found this setting really useful for doing UI design since most of the graphics in an app, especially icons and the like, have to be very precise or things begin to appear fuzzy. However, transforming a vector object that's only 36 x 36 px tends to really jump around a lot when dragging to transform, so for the comp stage I turn it off. Last night I had to whip out some rough layouts really quick and turned it off. That's when I noticed it stopped but didn't realize it until today. As it was happening, so were all the crashes and restarts so it was difficult to keep track.
    I think if you take a look at that new setting option you'll find the root of the problem.
    Let me know if you can reproduce the bug with that setting on.
    Here's my system info:
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Mac OS 10.7.3
    System architecture: Intel CPU Family:6, Model:44, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 8
    Logical processor count: 16
    Processor speed: 2400 MHz
    Built-in memory: 24576 MB
    Free memory: 14531 MB
    Memory available to Photoshop: 23183 MB
    Memory used by Photoshop: 68 %
    Image tile size: 1028K
    Image cache levels: 6
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Version: 2.1 ATI-7.18.11
    OpenCL Version:
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI Radeon HD 5870 OpenGL Engine
    Display: 3
    Display Depth:= 32
    Display Bounds:=  top: 180, left: 2560, bottom: 1260, right: 4480
    Video Renderer ID: 16915201
    Video Card Memory: 991 MB
    Video Rect Texture Size: 16384
    OpenGL Version: 2.1 ATI-7.18.11
    OpenCL Version:
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI Radeon HD 5870 OpenGL Engine
    Display: 2
    Display Depth:= 32
    Display Bounds:=  top: 113, left: -1920, bottom: 1193, right: 0
    Video Renderer ID: 16915201
    Video Card Memory: 991 MB
    Video Rect Texture Size: 16384
    OpenGL Version: 2.1 ATI-7.18.11
    OpenCL Version: 1.1 (Dec  4 2011 16:53:18)
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI Radeon HD 5870 OpenGL Engine
    Display: 1
    Main Display
    Display Depth:= 32
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Renderer ID: 16915201
    Video Card Memory: 991 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: BearOSX:Applications:Adobe Photoshop CS6:
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      640, 595.9G, 120.8G free
      ArchiveDrive, 465.4G, 204.1G free
      BearOSX_backup, 232.0G, 165.6G free
      Media, 463.7G, 164.8G free
      BearFiles Backup, 935.7G, 448.1G free
      Media Backup, 460.7G, 460.3G free
      SpeedOne, 118.6G, 112.2G free
    Required Plug-ins folder: BearOSX:Applications:Adobe Photoshop CS6:Adobe Photoshop CS6.app:Contents:Required:
    Primary Plug-ins folder: BearOSX:Applications:Adobe Photoshop CS6:Plug-ins:
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   5.0.11.0   1.256674
       AdobeACE.framework   AdobeACE   2.19.18.19243   66.492997
       AdobeAGM.framework   AdobeAGM   4.26.17.19243   66.492997
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.19243   66.492997
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.492997
       AdobeCoolType.framework   AdobeCoolType   5.10.31.19243   66.492997
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120201  
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206  
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   4.0.93   66.496052
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   6.0.0.1642  
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1  
       amtlib.framework   amtlib   6.0.0.75  
       boost_date_time.framework   boost_date_time   6.0.0.0  
       boost_signals.framework   boost_signals   6.0.0.0  
       boost_system.framework   boost_system   6.0.0.0  
       boost_threads.framework   boost_threads   6.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.0.5.19287   145486
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0  
       dvacore.framework   dvacore   6.0.0.0  
       dvamarshal.framework   dvamarshal   6.0.0.0  
       dvamediatypes.framework   dvamediatypes   6.0.0.0  
       dvaplayer.framework   dvaplayer   6.0.0.0  
       dvatransport.framework   dvatransport   6.0.0.0  
       dvaunittesting.framework   dvaunittesting   6.0.0.0  
       dynamiclink.framework   dynamiclink   6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1640  
       mediacoreif.framework   mediacoreif   6.0.0.0  
       PlugPlug.framework   PlugPlug   3.0.0.383  
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework        
    Required plug-ins:
       3D Studio 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       ADM 3.10x16, Copyright © 1987-2008 Adobe Systems Inc.  All rights reserved. - from the file “AdobeADM.bundle”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 7.0 (308), Copyright © 2012 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0 20120305.m.415 2012/03/05:21:00:00  ©2002-2012 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0 20120305.m.415 2012/03/05:21:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0 20120305.m.415 2012/03/05:21:00:00  ©1997-2012 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Enable Async I/O 13.0 20120305.m.415 2012/03/05:21:00:00  © 2004-2012 Adobe Systems Incorporated - from the file “Enable Async IO.plugin”
       Entropy 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0 20120305.m.415 2012/03/05:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0 20120305.m.415 2012/03/05:21:00:00  ©2001-2012 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0 20120305.m.415 2012/03/05:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.0 20120305.m.415 2012/03/05:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0 20120305.m.415 2012/03/05:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0 20120305.m.415 2012/03/05:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0 20120305.m.415 2012/03/05:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0 20120305.m.415 2012/03/05:21:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       U3D 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0 20120305.m.415 2012/03/05:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

  • Illustrator CS 5.1 Text On Path Transform Panel

    Just upgraded from CS4 to CS5.1. I noticed that when I have text on a path, and I try to use the Transform Panel to change the size of the text, it distorts the path. For example, if I make a 10" circle, and place text going around that circle, and then try to use the Transform Panel to put in a new width dimensions (say 5"), it distorts the path and text to an oval shape (wider than tall). I have contrain proportions selected, along with "Scale Strokes & Effects" and "Transform Both" checked on. I noticed this when I had a design I was working on. It was a panther mascot logo in a ciircle with text going around the circle. I tried to use the Transform Panel to change the size of the entire design, and it distorted everything. I problem solved and figured out the text on the path was the culprit. If I select everything excluding the text on the path, it will tranform correctly.
    Any insight as to how to resolve this issue (other than converting the text to paths) would be much appreciated.
    Thanks.

    Yup, that worked, however I really don't like having to turn off preview bounds. I like getting accurate reading on dimensions, especially when objects have strokes on them. Is that a quirk with CS5? I worked with preview bounds turned on in CS4 with no issues. Thanks again for youer help.

  • Illustrator Shape / Graphics Styles issue (bug?)

    When using the 'Split into Grid' command the resulting rectangles are defined as paths not shapes so that the live corners feature is not visible in the toolbar/transform palette.
    Since starting to write this I've stumbled upon the fact that while holding the Ctrl key with the object selected the live corners become visible and editable directly either via dragging the mouse or when double-clicking the mouse on the radius point where as options window appears to allow exact settings - this is great. It would be better if the toolbar/transform palette also reflected these settings to see at a glance which values have been used or even better, the resultant output of the 'Split into Grid' was defined  as a rectangle in the first place.
    Also, historically (CS5) I would save the rounded corner effect as a graphic style, I've noted that shapes with live corners set, do not copy those settings into the captured graphic style.
    Cheers!
    Rob

    Learning on the fly here, I just noticed the Object > Shape menu where you can convert a shape to rectangle when then enables the live corners to be updated. Perhaps a check box could be added to the 'Split into Grid' to enable this to be done automatically?
    The graphics styles issue still stands.

  • Manually setting up size for shapes or stroke width bug

    Hi everybody,
    Since I installed Photoshop CC 2014 I have the most annoying problem.
    I can't seem to change the sizes of my shapes or the stroke width manually.
    So let's say I created a square of 150x150 and I want a new size of exactly 126x126, I can't write the exact size in the top field.
    I write it and, once I press tab to leave the field, it puts back the previous value.
    Same for stroke width. I'm obliged to use the slider to be able to change the width of my stroke - which obviously is everything but precise.
    I don't know if I missed something but this is the first time is happening since I'm using Photoshop.
    Thanks for your help!
    Doro.
    UPDATE 29/01/15
    This is coming a bit late but it seems we found where the bug is coming from.
    I'm using a macbook pro retina 13 with a french keyboard. To type a number I need to press shift + the number.
    So to get back to my example I want to change the size of 150px to 126px. I would write the number 126 in the size field and to do so I would need to press the button shift + 126. The fact is that once you're interacting with the size field in the top menu, it seems that the shift button triggers the path operation "combine shapes"  and overrides my action of typing a number.
    Let us know if you can do something about it.

    hi Y. BIG time thank you for this. i was not aware this was such an issue. i definitely cannot have any ambiguities in my spreadsheet and customizing it in numbers is the whole reason i am spending this time formatting (i.e. to make it intuitive and visual).
    that said, if accepting excel and then exporting to excel will cause problems i absolutely cannot have this.
    can you help me a little more on what the problems are? i have already got a file with two tabs directly imported from Quickbooks (by my book keeper in excel) and a tab that she set up that pulls data from these tabs - and then i have MY tab that i have been customizing and proofing and fixing as i go along. more info on this work below.
    are there commands i can run to clean this up?
    what is considered OK to do in numbers if i am accepting excel (printing? adding new numerical entries)?
    THANK YOU
    background: right now i am /mostly/ doing formatting things like adding bold outlines or adding color or whatever but i have /also/ been dragging and dropping some rows to put them in a better place and fixing some cell sums that were either left out by my book keeper or which needed to be added to check THEIR work. are you saying that by doing this i am setting myself up for various formatting issues such as merged cells?
    if so, once i finish the format of the spreadsheet and the tabs i can only exclusively open in numbers if this is necessary. are there some commands i can run to "clean up" issues? for instance can i go around the various tabs and unmerge cells to clean things up?
    also, i definitely cannot split up tabs into individual documents as the customized spreadsheets are pulling numbers from a set of tabs that are quickbooks imports....

  • Why is Illust. CS6 generating an additional rectangular path when converting brush stroke to path?

    I depend on custom brushes where I convert those brushes to outlines and then "Unite" those objects in Pathfinder.
    I never had any problems through CS5, but now CS6 is adding an additional rectangular path surrounding the object, so when I go to unite multiple objects I get a bunch of united rectangles instead of pine needles, for example. What the heck.
    Thanks in advance for any solutions to this issue.

    In older versions of Illustrator (about AI 9 or 10) there was a trick to avoid getting similar superfluous paths by first selecting all objects (or just the brush objects), then applying the Effect > Distort and Transform > Transform Effect in placebo mode (just take the default values).
    After that, you could go to Object > Expand Appearance.
    Not sure if that bumpy workaround still works in AI CS6.

  • Is there a workaround for the transform/crop bug?

    Happy Tuesday!
    Does anyone know a way to get around this bug?
    - I have two video clips.
    - One video clip (on top) is a talking head that need to be placed in a box on the other clip.
    - Apply transform to talking head clip.  Scale and change position.
    - Apply crop to talking head clip. Bring in left and right so image fits in the box.
    Everything is good so far...
    - Apply same transform and crop to other talking head clips in same project.
    - Crop fails terribly for second and all subsequent attempts. It seems like there is a magic area for which the clip cannot render.
    The first transform/crop works fine...
    All subsequent transform/crops, either mannually applied or from copied attributes, do this:  (The collection of icons are inside the box and is showing through from the bottom clip.)
    If I drag the image around the screen, there seems to be a "magic area." If the image is in the magic area, everything is fine.  If the image approached any edge of the screen, the bad crop effect happens. Here I have dragged the transform near the bottom left corner of the screen:
    I have played with crop settings and the way the crop jumps, there seems to be some kind of logic bug in the cropping code, particularly with transform/crop combinations.  Any help would be appreciated!  This bug is a show-stopper, and I'm on a fairly tight schedule.  Does anyone know of a way to get around this bug?
    Tom

    I guess, I'm of no help here.. I can crop and transform like crazy - no issues
    I also tried your 'special' method, to crop/transform the main storyline (=what I wouldn't do)  ...  but the attached other clips appear without problems:
    and after that 'arrangement', another one - no issues:
    tsphillips wrote:
    … Perhaps an interesting experiment would be to see what it takes to make a clip render outside of it's crop box.
    here you lost me - in translation, sorry:
    a clip OUTside its crop??
    outside a crop is nothing, that's what a crop is for… shouldn't it?
    cropping means; cutting-off parts of the pic, that icon is a passépartout..
    so, outside a crop is … nothing to see here, Sir..
    Sorry, of being no help here......
    Would be interesting, what Cupertino will andswer you..........

  • How can you change path for converted PPD files?  Default goes to /var/...

    Hi,
    I'm pretty new to the Solaris 10 world and I'm attempting to troubleshoot some Xerox print issues. One of our Oracle Users may send a print job through with an HP Initialization String...yes you read that right, and cause the Printing services to Yo-Yo.
    I've installed the Xerox Printer Administration Tool 4.30.28 and then installed the most current driver package. Thing is, either the services will still bounce or the job will not print. Understandable because of the HP Initialization String.
    However, I tried using the Solaris Print Manager w/ a generic Xerox driver and the Print Services did not bounce. I thought then that I would try using the actual Xerox Workcentre 7655 driver by converting the driver from Xerox and using the PPDMgr tool. Thing is, I could figure out how to really change the path so that the driver would get dropped in the /usr/lib/lp/model/ppd/system/foomatic directory.
    Any way to do this?
    Thank you for your time,
    Mr Mister

    Hello Eric
    I am using the "UserDefinedErrorsDir" in LabVIEW 7.1 /7.1.1 Windows and Linux.
    But there is a "syntax" problem. Let me explain this:
    If you enter
    UserDefinedErrorsDir=C:\
    into your LabVIEW.ini File, LabVIEW will not search the Files in your C:\      Directory...
    LabVIEW search the *-errors.txt Files in the
    C:\errors\
    Directory!
    That mean that you have to create a folder with the name errors in your UserDefinedErrorsDir and after that you only have to copy all your *-errors.txt Files into this folder.
    Happy Wiring
    Martin CLAD

Maybe you are looking for