Bend to half circle in cs5 extended.

hello all.
how would i bend this wall into a half circle using repousse in cs5 extended.
im trying to make the ends of the wall come around into a half circle.
regards...phil.

mylenium.
you are a star.
thank you very much for your help and replying.
once again a big big big thank you.
cheers.
phil.

Similar Messages

  • Creating half circle 3d in cs5 extended.

    hello.
    im trying to figure out how to make this image into a half circle using cs5 extended.
    i want both ends of wall to come around.
    ive gone into repousse-bend and other settings but i cant get the perfect half circle bend.
    any help would be very much appreciated.
    phil.

    thanks for the reply
    i will keep that in mind. it is a very helpful suggestion.
    thank you.

  • Need help in installing the camera raw update that will cover my Sony Alpha 77 & let me open & edit them in CS5 Extended.

    I have the Photoshop CS5 Extended installed, but have just got around to using it to size some photos for an internet circle only to find that I cannot open my cameras Raw files, a Sony Alpha 77. The camera is obviously to new for the software installed with my version of CS5.
    Can anyone help me out please?
    Paul.

    Hi Paul
    Your camera was supported in Adobe Camera Raw 6.5 but you could install the last update for CS5 which is version 6.7.1
    Use one of the links below to download and install.
    Mac
    http://www.adobe.com/support/downloads/product.jsp?product=106&platform=Macintosh&PID=2159 997
    Windows
    http://www.adobe.com/support/downloads/product.jsp?product=106&platform=Windows&PID=215999 7

  • CS5 Extended, update 12.01 issue

    I just bought CS5 Extended (After returning regular, due to needing video support and Adobe broke that out after CS2)  as an update to CS2.
    I had installed CS5 regular and update 12.01 and it was working (mostly anyway).
    I tried to install extended over the top of regular and that didn't work, so I uninstalled all photoshop products, then installed CS5 extended.  Photoshop started right up.
    After I went into the help, I told it to install patches, including 12.01 (but NOT the manager software at this time, I had a problem with that in regular CS5).
    After 12.01 was installed (and Camera Raw 6.02) I got the error at start up that the forum describes with the not being able to access memory, which the 12.01 patch appears to have been the fix for.
    I worked around the problem for now by uninstalling the entire Photoshop package again and re-installing CS5 extened, but NO updates.  At this point CS5 Extended starts up.
    My temporary solution is not to install Update 12.01
    The machine specs:  Toshiba Laptop Satellite P30, Intel Pentium 4 CPU 3.60 GHZ (hyperthreading dual core)  2GB RAM  ATI Mobility Radeon X600 Win XP Professional SP3  about 12GB available disk space at install.

    make sure all adobe applications are closed, acrobat bridge photoshop etc.
    check on task manager>processes
    sort by description
    be sure no half closed adobe apps are running in the background.
    look for photoshop.exe
    look for bridge.exe
    look for PDapp.exe
    look for CS5Servicemanager.exe
    If you see them in processes end task them, then try.

  • Using Quadratic Eq for a Half Circle

    Does any math minded forumer know how to fit a
    QuadCurve2D to half a circle?
    I made an app to test it out but no matter where i placed the
    three points i couldnt get a fit over a circle.
    It seems like the sides always "slump" down too much.
    The problem im trying to solve is...
    I have three points on a half circle in 3D space (so, with x, y, z):
    A start point, 90 degs, and 180 degrees.
    I need to find a java curve that can connect those three points
    in a "circle" type way.
    Like i said before, quad never seemed to line up - though i
    would have thought that was the way to do this.
    And before anyone chimes in with "use arc"... this half circle will
    be rotated in every which way in three space so im looking for a
    curve that will connect those three points retaining shape.
    Im thinking about just making the circle a hexagon and then rotating
    the points and connecting the points for a jagged edge -
    but id prefer not to do this.
    Id appreciate any advice, Thanks!
    i found a site with an applet to play with these curves
    http://www.doc.ic.ac.uk/~dfg/AndysSplineTutorial/Quadratic.html

    apparently this is as close as you will get to matching a bezier
    curve to a half circle but its VERY damned close.
    play around with the iterations for cool curve effects.
    enjoy.
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    public class BezierTest{
    public static void main(String[] args) {
         new BezierTest();
    public BezierTest(){
    //     fr.addMouseListener(this);
    //     fr.addMouseMotionListener(this);
         displayFrame();
    public void displayFrame(){
         fr.setContentPane(panel);
         fr.pack();
         fr.setLocationRelativeTo(null);
         fr.show();
    public class Panel extends JPanel{
    public Panel(){
         this.setPreferredSize(new Dimension(500, 500));
         this.setBackground(Color.white);
    public void paintComponent(Graphics gr){
         super.paintComponent(gr);
         Graphics2D g = (Graphics2D)gr;
         // Points
         Point P1 = new Point(50, 300);
         Point P2 = new Point(450, 300);
         Point C1 = new Point(50, 34);
         Point C2 = new Point(450, 34);
         // circle
         g.setPaint(Color.black);
         g.drawOval(50, 100, 400, 400);
         // real curve
         g.setPaint(Color.red);
         cc.setCurve(P1, C1, C2, P2);
         g.draw(cc);
         // iterated curve
         g.setPaint(Color.black);
         double x1 = P1.x;
         double y1 = P1.y;
         double x2;
         double y2;
         double z = .5;
    //     for(double z = .1; z <= .5; z = z + .1){
         for(double t = 0; t <= 1; t = t + z){
         x2 =
         (P1.x + t * (-P1.x * 3 + t * (3 * P1.x - P1.x * t))) +
         t * (3 * C1.x + t * (-6 * C1.x + C1.x * 3 * t)) +
         t * t * (C2.x * 3 - C2.x * 3 * t) +
         P2.x * t * t * t;
         y2 =
         (P1.y + t * (-P1.y * 3 + t * (3 * P1.y - P1.y * t))) +
         t * (3 * C1.y + t * (-6 * C1.y + C1.y * 3 * t)) +
         t * t * (C2.y * 3 - C2.y * 3 * t) +
         P2.y * t * t * t;
    System.out.println("X: " + x2);
    System.out.println("Y: " + y2);
    System.out.println("\n");
         g.drawLine((int)x1, (int)y1, (int)x2, (int)y2);
         x1 = x2;
         y1 = y2;
         CubicCurve2D cc = new CubicCurve2D.Double();
         JFrame fr = new JFrame("Bezier Test");
         Panel panel = new Panel();
    }

  • Program error when try to use 3D repousse in Photoshop CS5 extended?

    Please help!!!! Unable to use 3D repousse Photoshop CS5 Extended  (my system info is described below)
    I tried almost everything that is available in Adobe library help, also re-installed programs as requested by Adobe support (suspected to get rid of me), it did not solve the problem.
    I used to have 3D capabilities, and also crop tool worked well before (now it changes all layers when using crop even in background).  My PC is same,  nor I downloaded plugins or changed video cards (these things are too advanced for me!), also restored preferences many times.
    My system makes automatic updates, reviewed graphics and adobe as recommended.
    OpenGL settings is odd …only can access basic, other modes are not highlighted (normal or advanced).
    ERRORS (for 3D Text)    
    1-“Your 3D scene now exceeds the limits of lights and/or textures for the video card’s hardware-accelerated 3D rendering. As long as the limits are exceeded, 3D rendering will be done in software only, and some features (e.g Repousse)will be disabled.”
    2- “Your video card does not meet the requirements for hardware-accelerated 3D rendering. All 3D will be rendered with software only “
    3-“ Could no complete the text layer command because of a program error”
    ERROR (for object)
    Open GL/GPU HARDWARE ACCELERATION IS CURRENTLY  DISABLED. 3D WILL NOW BE RENDERED WITH SOFTWARE ONLY.  TO ENABLE OPEN/GL  ACCELERATION, GO TO PREFERENCES > PERFORMANCE TAB AND CHECK THE “ENABLE OPENGL GRAWING” CHECK BOX.
    Is it possible that I have a GPU Sniffer? all these terms I have learned recently =)   but I have a healthy & capable graphic card and accepted by adobe standards.
    SYSTEM INFO 
    Adobe Photoshop Version: 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch]) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:5, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2128 MHz
    Built-in memory: 3895 MB
    Free memory: 2210 MB
    Memory available to Photoshop: 3280 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: False.
    OpenGL Crash File: Not Detected.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) Graphics Media Accelerator HD
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1360
    Video Card Number: 1
    Video Card: Intel(R) Graphics Media Accelerator HD
    Driver Version: 8.15.10.1968
    Driver Date: 20091008000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Video Mode: 1360 x 768 x 4294967296 colors
    Video Card Caption: Intel(R) Graphics Media Accelerator HD
    Video Card Memory: 1723 MB
    Serial number: 
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS5.1 (64 Bit)\
    Temporary file path: C:\Users\Patricia\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 284.6G, 218.5G free
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS5.1 (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 2010/12/13-23:37:10   64.449933 64.449933
       adbeape.dll   Adobe APE 2011/01/17-12:03:36   64.452786 64.452786
    AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2010/06/03-13:43:23   3.0.93 61.433187
    AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68 61.2954
       AdobePDFL.dll   PDFL 2010/12/13-23:37:10   64.341419 64.341419
       AdobePIP.dll   Adobe Product Improvement Program   5.5.0.1265
       AdobeXMP.dll   Adobe XMP Core   5.0 64.140949
    AdobeXMPFiles.dll   Adobe XMP Files   5.0   64.140949
    AdobeXMPScript.dll   Adobe XMP Script   5.0   64.140949
       adobe_caps.dll   Adobe CAPS 4,0,42,0  
    adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   2.0.0.36 (BuildVersion: 2.0; BuildDate: Mon Jan 24 2011 21:49:00) 1.000000
       AFlame.dll   AFlame 2011/01/10-23:33:35   64.444140 64.444140
       AFlamingo.dll   AFlamingo 2011/01/10-23:33:35   64.436825 64.436825
       AGM.dll   AGM 2010/12/13-23:37:10   64.449933 64.449933
       ahclient.dll    AdobeHelp Dynamic Link Library   1,6,0,20
       aif_core.dll   AIF 2.0   53.422628
       aif_ogl.dll   AIF 2.0   53.422628
       amtlib.dll   AMTLib (64 Bit)   4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00)   1.000000
    amtservices.dll   AMTServices (64 Bit)   4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00) 1.000000
       ARE.dll   ARE 2010/12/13-23:37:10   64.449933 64.449933
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/01/10-23:33:35   64.436825 64.436825
       AXEDOMCore.dll   AXEDOMCore 2011/01/10-23:33:35   64.436825 64.436825
       Bib.dll   BIB 2010/12/13-23:37:10   64.449933 64.449933
       BIBUtils.dll   BIBUtils 2010/12/13-23:37:10   64.449933 64.449933
    boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015
       CoolType.dll   CoolType 2010/12/13-23:37:10   64.449933 64.449933
       data_flow.dll   AIF   2.0 53.422628
       dvaadameve.dll   DVA Product 5.0.0  
       dvacore.dll   DVA Product 5.0.0  
       dvaui.dll   DVA Product 5.0.0  
    ExtendScript.dll   ExtendScript 2011/01/17-17:14:10   61.452840   61.452840
       FileInfo.dll   Adobe XMP FileInfo   5.0 64.140949
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_flow.dll   AIF 2.0   53.422628
    image_runtime.dll   AIF   2.0 53.422628
       JP2KLib.dll   JP2KLib 2010/12/13-23:37:10   64.181312 64.181312
    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.1263  
       MPS.dll   MPS 2010/12/13-23:37:10   64.450375 64.450375
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4940  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4940  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.4940  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
    pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS5.1   CS5.1
       Plugin.dll   Adobe Photoshop CS5   CS5  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   2.5.0.232  
       PSArt.dll   Adobe Photoshop CS5.1   CS5.1
       PSViews.dll   Adobe Photoshop CS5.1   CS5.1
       SCCore.dll   ScCore 2011/01/17-17:14:10   61.452840 61.452840
       tbb.dll   Threading Building Blocks   2, 1, 2009, 0201  
       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   2.0.0.15 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   2.0.0.15
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
       wu3d.dll   U3D Writer 9.3.0.113  
    Installed plug-ins:
       3D Studio 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Accented Edges 12.0
       ADM 3.11x01
       Angled Strokes 12.0
       Average 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 6.3
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Cineon 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Clouds 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Collada 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Color Halftone 12.0.2
       Colored Pencil 12.0
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Craquelure 12.0
       Crop and Straighten Photos 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       De-Interlace 12.0.2
       Dicom 12.0
       Difference Clouds 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Eazel Acquire 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Embed Watermark 4.0
       Entropy 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Extrude 12.0.2
       FastCore Routines 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Google Earth 4 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Grain 12.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       HDRMergeUI 12.0
       IFF Format 12.0.2
       Ink Outlines 12.0
       JPEG 2000 2.0
       Kurtosis 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Lens Blur 12.0
       Lens Correction 12.0.2
       Lens Flare 12.0.2
       Lighting Effects 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Liquify 12.0.1
       Matlab Operation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Maximum 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mean 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Measurement Core 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Median 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mezzotint 12.0.2
       Minimum 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       MMXCore Routines 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Mosaic Tiles 12.0
       Multiprocessor Support 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Neon Glow 12.0
       Note Paper 12.0
       NTSC Colors 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Ocean Ripple 12.0
       OpenEXR 12.0.2
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Paths to Illustrator 12.0.2
       PCX 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Photocopy 12.0
       Photoshop 3D Engine 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Picture Package Filter 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Pinch 12.0.2
       Pixar 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Portable Bit Map 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Poster Edges 12.0
       Radial Blur 12.0.2
       Radiance 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Range 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.1
       Shear 12.0.2
       Skewness 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Solarize 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Standard Deviation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Sumi-e 12.0
       Summation 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Torn Edges 12.0
       Twirl 12.0.2
       U3D 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Underpainting 12.0
       Vanishing Point 12.0
       Variance 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Variations 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       Wavefront|OBJ 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       WIA Support 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       Wind 12.0.2
       Wireless Bitmap 12.1 (12.1x20110328 [20110328.r.145 2011/03/28:10:30:00 cutoff; r branch])
       ZigZag 12.0.2
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Access CS Live
       Flash
       Kuler
       CS Review
    Installed TWAIN devices: NONE

    thank you for replying...but it seems an easy answer again  like one given by support....I had photoshop working perfectly before with same video card, I think in one project I clicked something in program (photoshop)that was not ready to correct it by itself... It should be available for the program to give warning several times to the user, I do not know what made Photoshop to disable OpenGL settings, and not be able to reverse action!!!!!  How do I change a GPU sniffer?  I an not a tech, all these things I just learned reading....had spent hundreds of hours....really dissapointed of Adobe and  its support....it is not fair to sell an expensive program without support, it seems to me that  I know now more than a live customer support.

  • Error in installing Photoshop CS5 extended.

    I'm trying to install Photoshop CS5 Extended on my laptop (win 7 64 bit), and I always get a installation error.
    The error is "There were problems with your installation. Some required components may have failed to install. This could impact the functionality of installed applications"
    When I click on troubleshooting it says there were 42 errors and 39 warnings =/
    Antivirus and Firewall is turned off
    Any ideas what the problem could be?

    I'm having the same problem,here are the error code..
    Please Help
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 45 error(s), 41 warning(s)
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    ERROR: Payload {1D830E80-28A4-11DF-A025-0024E8692489} has an action "install" but no resultState
    ERROR: The following payload errors were found during install:
    ERROR:  - Adobe CSXS Infrastructure CS5: Install failed
    ERROR:  - Microsoft_VC90_ATL_x86: Install failed
    ERROR:  - Adobe Linguistics CS5 x64: Install failed
    ERROR:  - Microsoft_VC90_CRT_x86: Install failed
    ERROR:  - Adobe Photoshop CS5 Support: Install failed
    ERROR:  - Adobe Bridge CS5: Install failed
    ERROR:  - AdobePDFL x64 CS5: Install failed
    ERROR:  - Microsoft_VC80_MFCLOC_x86_x64: Install failed
    ERROR:  - Adobe XMP Panels CS5: Install failed
    ERROR:  - Adobe Player for Embedding: Install failed
    ERROR:  - Photoshop Camera Raw: Install failed
    ERROR:  - AdobeColorCommonSetCMYK: Install failed
    ERROR:  - AdobeHelp: Install failed
    ERROR:  - Adobe Mini Bridge CS5: Install failed
    ERROR:  - Microsoft_VC80_CRT_x86_x64: Install failed
    ERROR:  - AdobeColorJA CS5: Install failed
    ERROR:  - Adobe ReviewPanel CS5: Install failed
    ERROR:  - Photoshop Camera Raw (64 bit): Install failed
    ERROR:  - Microsoft_VC90_MFC_x86: Install failed
    ERROR:  - Adobe Photoshop CS5 Core_x64: Failed due to Language Pack installation failure
    ERROR:  - PDF Settings CS5: Install failed
    ERROR:  - AdobeTypeSupport CS5: Install failed
    ERROR:  - AdobeColorVideoProfilesCS CS5: Install failed
    ERROR:  - AdobeColorCommonSetRGB: Install failed
    ERROR:  - Adobe Player for Embedding x64: Install failed
    ERROR:  - Required Common Fonts Installation x64: Install failed
    ERROR:  - Microsoft_VC90_ATL_x86_x64: Install failed
    ERROR:  - Adobe CSXS Extensions CS5: Install failed
    ERROR:  - Microsoft_VC80_ATL_x86_x64: Install failed
    ERROR:  - AdobeOutputModule: Install failed
    ERROR:  - Microsoft_VC90_CRT_x86_x64: Install failed
    ERROR:  - AdobeCMaps x64 CS5: Install failed
    ERROR:  - AdobeTypeSupport x64 CS5: Install failed
    ERROR:  - Microsoft_VC90_MFC_x86_x64: Install failed
    ERROR:  - Adobe Photoshop CS5 International English Language Pack_x64_AdobePhotoshop12-en_GB_x64: Install failed
    ERROR:  - Adobe WinSoft Linguistics Plugin CS5 x64: Install failed
    ERROR:  - AdobeColorEU CS5: Install failed
    ERROR:  - AdobePDFL CS5: Install failed
    ERROR:  - AdobeCMaps CS5: Install failed
    ERROR:  - AdobeColorNA CS5: Install failed
    ERROR:  - Microsoft_VC80_MFC_x86_x64: Install failed
    ERROR:  - Adobe SwitchBoard 2.0: Install failed
    ERROR:  - AdobeColorPhotoshop CS5: Install failed

  • I have photoshop CS5 Extended problem comes when I try to install it as I cannot seem to find an unzip program that will do it

    I have photoshop CS5 Extended but my motherboard flashed over so I have now purchased a new computer and of course wish to download another copy, I have my Serial No from my account and I have downloaded a new copy of the program, the problem comes when I try to install it as I cannot seem to find an unzip program that will do it as they are asking for file names etc which of course I don't have until I unpack it !! can anybody please advise what program will unzip this automatically bearing in mind there are two files with the download. Or is there a way that I can download without having to unzip?
    Thanking you for your help.

    download both the exe and 7z, put both in the same directory and click the exe.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • PS CS5 Extended on Windows -  When trying to use the clone stamp and/or healing brush as soon as I move the cursor over the image I get an exact copy of the existing layer that moves around the window with the movement of the clone stamp/healing brush.  W

    PS CS5 Extended on Windows
    When trying to use the clone stamp and/or healing brush as soon as I move the cursor from the toolbar over to the image I get an exact copy of the existing layer that moves around the window with the movement of the clone stamp/healing brush.  This just started tonight.  What's causing this weird behaviour?

    What are the settings in Window > Clone Source?

  • How do I edit Quicktime .mov video file in CS5 Extended ?

    Hi !
    I'm a photographer using Photoshop CS 5 Extended and editing video using Apple Final Cut Pro 7 NLE editing studio.
    I'd like to edit video footage in CS5 Extended. I have a Quicktime video .mov file that was shot with a Canon 5D2 and Canon 15mm fisheye lens and i would like to defish the footage to rectilinear using Photoshops Lens Correction Filter.
    I have tried opening the movie file in CS5 Extended and it appears as a video layer in my layers window. I can defish the first frame (according to Animation palette), but the lens correction needs to be over the whole footage not just the first frame.
    How do i do this and then output retouched / defished .mov file ?
    I assume you can use a similar process to clone out dust spots in footage too ?
    Any help and advice would be much appreciated ... thanks ...

    Wow ! That was a speedy reponse ... thankyou !
    I didn't realise i needed to convert into a smart object ... I tried that and it works !
    Woohoo !!
    Only problem is ... the 10 second QT .Mov file has changed from 65Mb file size to 2.2Gb. It looks similar quality and the Quicktime settings were just default (High).
    Any idea why file is sooooo big ?! Or how I can reduce it without losing too much quality ? Can't quite understand why the file size has ballooned and would be a problem editing it in Final Cut Pro 7.
    Thanks again ...

  • Hi please can you help me. I have photoshop CS5 extended, I bought a new camera Nikon D610 I want to edit my photos adobe camera raw , but when I try to open photoshop CS5 it will not open. Please can you tell me how to download and install the camera raw

    HI bought a new camera Nikon D610 , I am using adobe photoshop CS5 extended, I want to edit my photos in camera raw but it is not possible to do so . I need to download camera raw plugin for CS5 can some tell me how to do so or if there is a link for the camera plugin.
    Many thanks Pitt.

    For that Nikon model you need ACR 8.3 that means CS6 or CC.  Or you can download the DNG converter convert your Nikon RAW files to Adobe RAW files. And then process the Adobe RAW files with CS5 ACR version  6.7
    Camera Raw plug-in | Supported cameras

  • Installing Photoshop CS5 Extended Student & Teacher

    I've just ordered Photosop CS5 Extended Student & Teacher, I want to know how many times I can install from the one cd because I'm worried that my laptop may "die" and then I'll have to buy a whole new copy of Photoshop.
    I ordered my copy of Photosop CS5 Extended Student & Teacher from Cyclone Computers for $250.

    Install, activate and register your software on your current laptop. When you have another computer, deactivate the software on your current laptop, install it on your latest computer, and activate it.
    See this document for details on activation and deactivation: http://kb2.adobe.com/cps/100/1008779.html

  • Photoshop CS5 or CS5.5 or CS5 Extended

    First I want to know that, what is the difference between CS5.5 and CS5 Extended ?
    Second Which is the latest one CS5 or CS5.5 or CS5.1 or CS5 Extended ?

    Actually, 12.0.4 and 12.1 are IDENTICAL in functionality but for the ability to license via subscription.
    The Photoshop delivered via the creative suite CS5.5 has various names.  Adobe's site calls it Photoshop CS5 sometimes, Photoshop CS5.1 sometimes, and people often call it Photoshop CS5.5.  Internally, as pointed out above it uses version 12.1 - except sometimes (such as in the registry we see 55.0!).
    I get the distinct feeling making a .5 release has been a bit of a discovery process for Adobe. 
    Now, to the second part of the question...
    The difference between the "Standard" and Extended editions exists across all the mentioned versions, and Extended as you might imagine has additional features.  You can read more about that here, which is a surprisingly difficult page to find on Adobe's site.
    http://www.adobe.com/special/products/photoshop/compare/
    -Noel

  • No 3D Tools in Photoshop CS5 Extended!

    I upgraded from Photoshop CS5 standard to  CS5 Extended but can't see the 3D tools in the menu - just shows the standard menu... I re-downloaded and re-installed, but still no 3D. What am I doing wrong?

    How did you upgrade to Photoshop CS5 extended?  I didn't think Adobe was selling upgrades to Photoshop CS5 any longer.
    In any case, activation is where the differentiation is made, based on the content of the serial number - both use the exact same install.  Deactivate and reactivate with your new serial number and the features should show up.  You really didn't need to reinstall.
    -Noel

  • Install CS5 extended on Imac

    how do I install CS5 extended on my new iMac?  I have read to download trial version then add in serial number - but I cannot find a trial version of CS5 extended.

    these are the only cs5 programs available via adobe or its affiliate prodesigntool.com
    if you follow all 7 steps you can dl a trial here:  http://prodesigntools.com/all-adobe-cs5-direct-download-links.html
    and activate with your serial.
    if you have a problem dl'g, you didn't follow all 7 steps.

Maybe you are looking for

  • Do you allow query or view creation in QA and PRD?

    Do you allow queries, views and workbooks to be created in QA or PRD?  If so, do you transport those BEx Objects into the other systems (e.g. PRD->QA and PRD->DEV or QA->PRD and QA->DEV)? Often I find I will be creating a query or a view in QA or PRD

  • Using iPod as a disk (and only a disk)

    I've got an iPod 4G, connected to Leopard. I want to use this as an ordinary external usb drive. I'm positive I've done this before (used to to beta test Leopard actually). Anyway, I'm having some trouble doing it again. In Disk Utility I've selected

  • Why does photo taken on iPhone turn sideways when sent as an email attachment

    why does photo taken on iPhone turn sideways when sent as an email attachment?

  • Download error message for AW

    I have just moved data from a G3 iMac to a G4 iMac with 10.4.9 installed. Much of what I moved was written in AW. The G3 has AW 6.04 installed on it but I can't burn a CD to move it to the G4. It will no longer be used on the G3. I downloaded the upd

  • Ipad is sluggish after iOS8 upgrade

    MMy ipad2 is very slow, sluggish and choppy after the latest iOS update.  It is almost unusable.  What can I do?