Envelope distort bug in cs6?

In the image linked, 1. is the issue/bug.  2. is the solution using the pathfinder Unite. Question is why can't I use without unite and get a clean text when warped rather than the messy distorted out of shape text like you see in 1.?
Thank you in advance.

Here's a link to the file.  http://www.qfpost.com/file/d?g=GNxi1XmZT   The very left before the border is the original without being warped, that is for you to try it if that's why you asked for the file. The first row after the border on the left are the ones with the issue, you have to look closely into how some of it is distorted., The last row on the right is the solution by uniting it as described in my previous two posts.

Similar Messages

  • CS6 Envelope Distort Warp - PMS color problem

    Hi Everyone!
    Massive issue here.
    We're using Envelope Distort > Warp to create packaging to fit a curved dieline.
    The image used for the background includes a Pantone PMS who's values are changing at the Warp stage.
    The image after warping appears lighter and the tones have changed.
    The image is an embedded Photoshop flattened .tif.
    We have tried:
    * removing all colour profiles from both Illustrator and Photoshop and any embedded profiles
    * changing the PMS to a spot colour that isn't linked to the Pantone Plus colour books we use, but retaining the correct CMYK values
    * we've replicated the problem using another image that includes tones of a PMS. Warping also changes the tones.
    * Expanding the final Warp in the hope it would revert to the right values after.
    Using CS6 on OS X 10.8.4
    I've attached an image of the problem. The top is how the PMS should read. Below, is after warping.
    *EDIT - Rasterizing the ENTIRE artwork solves the issue - BUT, this is not ideal to send to print as the text is now pixelated.
    We then Rasterized the background image, along with a vector shape of the dieline with no fill or stroke (as the image would not Rasterize on its own). On top of that we warped the text and other vectors. So we now have two warped shapes - one for the background and one for the text.
    It appears this is a bug in the way Illustrator treats colours at warp stage.
    Would be interesting to know if anyone else can replicate this problem and thoughts?
    Thanks muchly :-)

    We are experiencing a similar thing with gradients values changing slightly which cause min dot value issues for flexo printers.  We have tried all of the different envelope option settings and nothing works.  The text issue you are having did you try turning off the Anti-Alias option? Did it make a difference for the pixelated text? 

  • How to make a envelop distort like in this image

    Hey guys I wanted to know how can i make a envelop distort like this image in adobe illustrator CS6. Im running it on Windows 7.

    I still believe the originator of the artwork at least tried to keep to the straight and narrow. The crucial question is whether Hunter wishes to (too).
    When zooming in as far as possible on the image (so it is 190 mm wide on screen), as far as I can see, the spaces are still constant width and the lettershapes at top and bottom are still straight, especially evident for the TE at the end, so I believe any deviation would be an inaccuracy. The rounding of the basically horizontal segments as in Envelope (or Art Brush) Distort should be clearly visible.
    I believe Hunter may be able to make sure by zooming in on the actual artwork, and maybe measuring distances between key Anchor Points, and/or dragging with the Line Tool between them, in the latter case the top of the TE would show the greatest deviance from straightness.

  • [CS2, CS3]Envelope Distort with gradient sends Illustrator to sleep (almost)

    Hi there,
    not sure if this is a well known flaw or not ...
    What I did basically:
    Filled a rectangle with a linear, 4-color-gradient
    Did an Envelope Distort to it with 4 rows and 4 columns
    Did some moves and rotations with about 50 % of the mesh points
    As a result, nearly every action one might do to the artwork now takes an eternity to be executed. Why is this so?
    Besides: Why is the file that huge? 12 MB ...
    If you'd like to check the document:
    http://www.sendspace.com/file/u8t624
    Thanks,
    Klaus

    It's slow here as well. Quad 2.66MacPro/Ai13.0.2
    The obvious solution is to not use an Envelope distort and just make a Gradient mesh. I'm not certain why you'd be using an Envelope anyway. You can simply shape a gradient mesh how you want. Envelope distorting a gradient in this manner results in banding or internal edges that are generally undesired. Gradient meshs won't have these edges.
    I'd guess that the envelopes is having to re-plot every aspect of the underlying gradient which is why it's taking so long. It's something in how you created to object.
    If you choose Object > Envelope > Release. Deselect both objects. Select both objects and choose Object > Envelope > Make with Top Object. Then AI is back to normal speed when editing. At least it is here. In addition, when I did this to your 12mb file and saved, it dropped to 640±kb.

  • Envelope distort with Mesh

    Hi,
    I am trying to create an envelope distort based on a grid mesh within a LiveEffect similar to Envelope distort--> Make with mesh. Given the path shape "art" I create a grid kmeshArt based on its bounding box:
    result = sAIArt->NewArt(kMeshArt,kPlaceAboveAll, nil,&myEnvelopeMesh);
    sAIMesh->InitCartesian(myEnvelopeMesh,width_i,height_j);
    result = sAIArt->GetArtBounds(art, &artBounds);
    //get the corners of the bounding art A,B,C,D, in clokwise order starting at top-left corner.
                                  pointA.h=artBounds.left;
                                  pointA.v=artBounds.top;
                                  pointB.h=artBounds.right;
                                  pointB.v=artBounds.top;
                                  pointC.h=artBounds.right;
                                  pointC.v=artBounds.bottom;
                                  pointD.h=artBounds.left;
                                  pointD.v=artBounds.bottom;
    Now via setpoint and a segment iterator I assign the values to  the four segments of the grid to match the art's bounding box:
    sAIMeshSegmentIterator->SetPoint(segment,0, &pointA); //top left corner point
    pointTMP.h=pointA.h+boundSize.h;
    pointTMP.v=pointA.v;
    sAIMeshSegmentIterator->SetPoint(segment,1, &pointTMP);     //horizontal handle
    pointTMP.h=pointB.h-boundSize.h;
    pointTMP.v=pointB.v;
    sAIMeshSegmentIterator->SetPoint(segment,2, &pointTMP);      //horizontal handle of next point
    sAIMeshSegmentIterator->SetPoint(segment,3, &pointB);
    sAIMeshSegmentIterator->NextOnPatch(segment,kAIMeshCounterClockwise); //top right corner
    I tried to create the envelope object by assigning the mesh a envelopeObject (second parameter) but it doesn't work.
    result = sAIEnvelopeSuite->MakeEnvelope(&art,1,myEnvelopeMesh,&eOptions,&myEnvelope);
    In fact, a call to sAIEnvelopeSuite->GetEnvelopeType(myEnvelope, &EnvType) reveals that it is of type kEnvelopeObject and not kEnvelopeMesh.
    So what I did was the following:
    result = sAIEnvelopeSuite->MakeEnvelope(&art,1,nil,&eOptions,&myEnvelope);
    result= sAIEnvelopeSuite->SetEnvelopeObject(myEnvelope, myEnvelopeMesh);
    In this case the envelope appears where it should be (when expanding the liveEffect object) but it has already distorted the shape within ("art"). If I manually restart the shape (by pressing the button "Reset Envelope Shape")  then it removes the original distortion of the enveloped shape and you can edit it perfectly by moving the vertices of the meshgrid, which behave as expected.
    In the image the (translucent white gradient) star should be aligned with the star behind, but it gets distorted (left) until envelope is reset (right).
    Why is this happening?  Is it because is created within a live effect? Maybe I am making a bad definition of the mesh grid or SetEnvelopeObject  is not properly used...
    Thanks,
    Jorge.

    You are using the the selection tool which will not allow you to grab a handle. So change to the direct select (the white arrow) tool and you will be much happier.

  • Envelope Distortion help?

    I am trying to make an envelope with 2 objects. One is a symbol set of circles, and another is a patch of stars. every time I try to make the envelope, it keeps saying that there needs to be a single path, I'm assuming that means the circles need to become 1 path somehow. I don't know what that means. I've read the directions over and over and I don't understand what I'm doing wrong. I hope someone can help.

    uploader still isnt working for some reason, so I'll try to explain it better.
    I have 2 objects, a circle and a patch of stars.
    I used the circle and created a symbol set which I colored and grouped.
    I grouped all the stars together and placed the group of stars on top of the circles.
    Do the stars need to be made into a symbol set too?
    Then I tried to use the envelope distortion but it kept saying there needs to be a single path. Sorry I can't upload a picture...

  • Envelope Distort Issue

    I'm using envelope distort option under the objects file menu to put some text on a roof top shape but the top of the text is distorting badly. (See attached image) Anyone know why this happen and how to solve this? Any help would be greatly appreciated.

    Select the roof shape & your type,
    then object >> envelope distort >. make with top object.
    I personally like the top image as the logo better if I may say so , distorting the "N" looks like a sagging roof.

  • Envelope distort to center of the object only possible?

    Envelope distort to center of the object only possible?
    Okay, can anyone please give me a hint how to achieve the effect shown in the image? If not with Illustrator what software can do this effect?
    It's like an envelope distort but like the object (small circles) is not entirely wrapped into the envelope.
    I tried moving the corners of the applied envelope towards the center of the object but it resizes the entire shape along with it...

    Set up the dot pattern (or whatever the art is)
    Choose Object > Envelope Distort > Make with Mesh
    Enter 2 rows and 2 columns and click OK
    This will add 1 mesh point to the center of the artwork.
    Use the Direct Selection Tool (the white arrow) to select only that center mesh point.
    Double-click the Scale Tool and enter a value larger than 100% in the Uniform Field.

  • Stroke Bug Illustrator CS6

    I contacted Adobe in June 2013 about a problem with the stroke profile items. I was told that there would be an update available and no updates were available. Will this be fixed anytime soon? Is it fixed in CC? In my photo I show the same exact stroke with different profiles applied. I have yet to find any efficient work arounds. Any info would be very helpful. Thanks!

    Below more elements
    My computer:
    Processor: Intel Xeon E5410 (Intel (R) Core (TM) i7 CPU 2.67Ghz [email protected]
    Microsfot Windows 7 Service Pack 1 +
    Installed memory (RAM): 8.00 GB
    64bit operating system
    Display: 1920x1200
    Graphics Card: NVIDIA Quadro FX 1800-30bits
    My usage:
    illustrations (I only use Illustrator CS6)
    planes (I use Illustrator with CADtools)
    documentions-packaging (I use illustrator with jpeg or psd done with photoshop CS6)
    information: I work on my computer and then I put my files on the corporate network
    My problem:
    regularly Illustrator will not start or it cuts abruptly, the following message appears:
    "A problem caused the program has stopped working properly. Windows will close the program and tell you if a solution is available"
    Do you have enough evidence to help me?
    De : Mylenium [email protected]
    Envoyé : vendredi 14 mars 2014 16:19
    À : Alison LEPREUX
    Objet : bug illustrator CS6
    Re: bug illustrator CS6
    created by Mylenium<http://forums.adobe.com/people/Mylenium> in Creative Suites - View the full discussion<http://forums.adobe.com/message/6209512#6209512

  • Using an envelope distortion as an action.

    I am trying to create a distortion action so that I can apply it to an image that will eventually be printed on a curved surface. I think the envelope distortion will work. So when I try to create an action with the envelope distort, I make the distortion using the rows and columns, and when I try to play the action on an image, instead of distorting the image, it just moves it around for every time I moved the row/column around.
    I know that's very confusing but hopefully someone understands and can help. Thank you.
    ...and if there is an easier way, besides using envelope distort, please let me know.

    We pad print on a curved surface. So what I did was etch perfect circles and straight lines onto the curved surface, put ink in the depressed etches, lift that ink off of the curved surface and onto a flat surface. Now this image is what our distortion should look like to print perfect circles and lines. I'll call this image A. I then scanned image A into Illustrator. I then took an image of circles and lines, with the exact image size as it should appear printed on the curved surface. I'll call that image B. I want to create an action that will distort image B to fit exactly with image A. This way, well what I hope will happen, I can apply this action to any image, in my case logos, and it will distort it perfectly to be printed on a curved surface.
    I've tried using the different warp effects (arch, arc upper, arc, lower, bulge, and so on) but due to how the pad flexes over the curved surface, these warp effects do not work perfectly, and it needs to be dead on perfect.
    I've tried pasting the vector file into photoshop and using the warp tool in there, which is very much like the envelope distort, but I cannot get image B to match perfectly with image A.
    Any help is very much appreciated. Thanks.

  • "Envelope distortion" in Photoshop

    Hi Guys
    I need your help in solving one urgent problem that I have.
    I have to distort a rectangular layered image using a given template (fan shape) in Photoshop. The image has to follow the template very precisely (it's for cup printing) and to stay in layers (lenticular design). I know how to easily do it in Illustrator, using the envelop distortion, but then my image will be flatened so won't work for my lenticular design. So please help .
    Hope to hear from you guys soon.
    Thanks a lot
    Ela

    Attachments to email-replies don’t work, please use the camera-symbol in the browser.
    You could save the layers as individual files (File – Scripts – Export Layers to Files), load them all into Illustrator and apply the same Mesh to all of them individually and align them afterwards.
    Another old method would be the Polar Coordinates-Filter (Rectangular to Polar), by the way.
    Edit: Like I mentioned before Warp – Arc may actually suffice if the Layers are identical in their dimensions (if they are not one could always fill their backgrounds with white and clip them identically); could you maybe post a screenshot of the File’s Layers Panel?

  • Use Envelope Distort to combine 2 words.

    How do I combine two words as one with Envelope Distort.... For example...
    I want to take a paragraph worth of words and then apply envelope distort to it so it can all fit inside one word.
    I use to use this technique all the time, but I must have forgotten a step cause I cant get it to work anymore.
    I Expand both the paragraph and the single word..... then I make sure the single word is on top in the arrangement.... then I select the expanded paragraph.... while the paragraph is selected, I hold down shift so I can select the single word too.... Once both are selected I click on"Make with Top Object" under "Envelope Distort."
    But it tells me "This requires a selection of multiple objects. The top object must be a single path or mesh, or a symbol containing a single path or mesh."
    Whats the deal? I know this is possible because I have done this countless times, but I cant seem to do it anymore.
    What am I missing? What am I doing wrong?

    I think you guys are right and he wants to do something like this
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=1eG8F35m5M0rXluuzkSbY9pWZgWM" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1eG8F35m5M0rXluuzkSbY9pWZgWM_thumb.png" border="0" />
    <br />
    <br />I no longer have the need to do this but used to doe this when I was in High School and then at Cooper Union it was very uncommon then but as it was costly to do even foe =r the design studios and agencies but since I worked for such and they paid me very little I had no problem using their resources at their expense. You can also do this with images and such.
    <br />
    <br />Any way it is outlined text then all turned to area type paths and the thread and then filled with the text. Pretty simple and basic today.
    <br />
    <br />I may have even been the first person to ever use this graphic device.
    <br />
    <br />circa 1962.

  • Bug illustrator CS6

    Hello,
    I use the Adobe suite creative
    I have all the required recommendations for Illustrator CS6
    But regularly Illustrator will not start or it cuts abruptly, the following message appears:
    "A problem caused the program has stopped working correctement.Windows will close the program and tell you if a solution is available"
    Do you have any recommendation of use to avoid this problem?

    Below more elements
    My computer:
    Processor: Intel Xeon E5410 (Intel (R) Core (TM) i7 CPU 2.67Ghz [email protected]
    Microsfot Windows 7 Service Pack 1 +
    Installed memory (RAM): 8.00 GB
    64bit operating system
    Display: 1920x1200
    Graphics Card: NVIDIA Quadro FX 1800-30bits
    My usage:
    illustrations (I only use Illustrator CS6)
    planes (I use Illustrator with CADtools)
    documentions-packaging (I use illustrator with jpeg or psd done with photoshop CS6)
    information: I work on my computer and then I put my files on the corporate network
    My problem:
    regularly Illustrator will not start or it cuts abruptly, the following message appears:
    "A problem caused the program has stopped working properly. Windows will close the program and tell you if a solution is available"
    Do you have enough evidence to help me?
    De : Mylenium [email protected]
    Envoyé : vendredi 14 mars 2014 16:19
    À : Alison LEPREUX
    Objet : bug illustrator CS6
    Re: bug illustrator CS6
    created by Mylenium<http://forums.adobe.com/people/Mylenium> in Creative Suites - View the full discussion<http://forums.adobe.com/message/6209512#6209512

  • When I use envelope distort, the text warps wrong.

    When I use envelope distort on a a chevron shape, the text warps beyond the shape and new anchor points and curves are automatically added.  What am I doing wrong?  Here are images of what's going wrong: http://imgur.com/a/usHj2

    I can't recreate your issue. I'm also not sure what steps you're following, but here's what I did:
    I tried it with live type, too, and it still worked. You may try copying your two objects into a brand new document, and see if the issue persists.

  • Liquify Bug, PS CS6, Half-Baked Results (Repeatable)

    Liquify mixes results from two different steps, and outputs them in a single file.  Here are two examples.
    Steps to repeat:
    Open file in liquify.  Perform liquification.  (Extreme changes will slow the computer down and make it easier to repeat these results.)
    Click "ok"
    Wait while the computer processes the results.  (Watch the progress bar.)
    Before the progress bar reaches the end, click "cancel."
    You are now returned to the liquify plugin.  Click "restore all" to reset the image.
    Make your new liquify changes.
    Click OK, and let the computer finish processing the liquification this time.
    As you can see, the blocks that completed processing from the first liquify pass have been saved, and are merged into the image from the second pass at liquification.
    Happy to help if there are any further questions or requests.
    System Info:
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:4 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3102 MHz
    Built-in memory: 12278 MB
    Free memory: 6424 MB
    Memory available to Photoshop: 10991 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI Radeon HD 5800 Series
    Display: 2
    Display Bounds:=  top: 0, left: 0, bottom: 1600, right: 2560
    Display: 1
    Display Bounds:=  top: 0, left: -1200, bottom: 1600, right: 0
    Video Card Number: 1
    Video Card: ATI Radeon HD 5800 Series
    OpenCL Version:
    Driver Version: 8.930.0.0
    Driver Date: 20111205000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1600 x 1200 x 4294967296 colors
    Video Card Caption: ATI Radeon HD 5800 Series
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\Gavin\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 223.5G, 74.5G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1642  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   5,0,10,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Collada 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Maximum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mean 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Measurement Core 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Median 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       MMXCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Picture Package Filter 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Range 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Variations 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       WIA Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE
    #3147637

    Hah.  I was just screwing around when I ran into this.  The performance on liquify in CS5 is abysmal (especially when it does that thing where it goes to my slowest drive for scratch disk) so when I got 6 beta installed I jumped in with a huge file and did something ridiculous and over-the-top just because I can. (Whee it's faaaaast!)  Then I reset the image and did a more realistic adjustment, and that's how I bumped into the bug.  Sure it's not a real workflow, and sure 99% of users will never see it, but this is a public beta after all.  The whole point is to report issues, and some of us get a kick out of finding stuff. 

Maybe you are looking for

  • Is it possible to have 2 different Ipods on one computer?

    I have a Ipod mini first generation and just got a new 30G Ipod. I downloaded all my music on to the new Ipod and when to Clean out the old one to download music for my mom on it. After I was done downloading the old Ipod with my mom music I went to

  • I NEED SOME ASSIGNMENTS! TO TEST OUT MY SKILLS!

    hey people, i have learned about if, for, and System.in.read() and stuff like that, can someone give me a project for me to work on? like homework to test out my skills? thanx

  • The finder bounces and will not close or relaunch.

    When I power up, the icons in the bar at the bottom appear and the Finder icon starts to bounce. (No other icons appear on screen, just the ones in the bar at the bottom) Theer is a message box on the screen asking if I want to relaunch the finder, b

  • Variant of expect command having similar functionality in Solaris OS??

    Hi All, I am using one shell script in Linux with “expect 5.38” command utility, this script contain ssh and sftp. Now same shell script I need to use in Solaris (SunOS eupr0016 5.9 Generic_118558-05 sun4u sparc SUNW,Sun-Fire-V440) but issue is that

  • HELP My image doesn't show in IE (APPLET)

    I'm trying to view a gif-file. It only shows in the Applet viewer of JBuilder7 and I can't make it work in IE. Can somebody help me? With the code below I can only see the buttons. It consist of 2 classes Class 1: VIEWER package javaclient2; import j