Hat "CS5 Extended" Zugriff auf "Ilustrator"?

Ich besitze die Schüler/Studenten Version von Adobe Photoshop Cs5 Extended.
Für meine Ausbildung benötige ich jetzt Adobe Illustrator.
Meine Frage wäre, ob bei Cs5 Extended Illustrator nicht dabei ist?
Oder ist dem nicht so?
Wenn ja, wie kann ich es installieren?
Photoshop CS5 habe ich drauf, aber wie kann ich mir dann auch noch Illustrator installieren?
Freue mich auf hilfreiche Antworten.

Ähm, ich stelle mich jetzt mal dumm: Was ist "CS5 Extended"? Sorry, hier liegt ein fundamentales Misverständnis vor. Klar gibt's Photoshop CS5 Extended, aber das war's dann auch schon - es ist eben nur Photoshop und keine Suite (siehe Produktübersicht). Illustrator mußt du dann schon noch extra kaufen, was aber so nicht möglich ist bei Edu. Also wirst du eine Suite nehmen müssen, was je nachdem, ob dein eines Jahr "Wartezeit", bis du wieder berechtigt bist, das nächste Edu Produkt zu kaufen, schon vorbei ist, vielleicht auch nicht von heute auf morgen möglich ist... Verfahrene Kiste, würde ich sagen und ohne zusätzliches Geldausgeben definitiv nicht lösbar.
Mylenium

Similar Messages

  • Dreamweaver CS5: Problem bei „Benutzer anmelden" und „Zugriff auf Seite beschränken"

    Hallo zusammen,
    ich bin gerade dabei für unsere Vertriebspartner auf unserer Firmenwebseite einen passwortgeschützten Bereich
    einzurichten. Ich arbeite mit Adobe Dreamweaver CS5 und nutze die beiden Serververhalten „Benutzer anmelden“ und „Zugriff auf Seite beschränken“. Als
    Anleitungshilfe habe ich zudem die folgende Seite benutzt: http://www.on-design.de/tutor/php/mysqlDreamweaver.php#einloggen
    Eine Datenbank wurde bereits erfolgreich erstellt.
    Ich habe nun zuerst zum Testen eine Datei „testlogin.php“  erstellt:
    = 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}     //declare two session variables and assign them     $_SESSION['MM_Username'] = $loginUsername;     $_SESSION['MM_UserGroup'] = $loginStrGroup;           if (isset($_SESSION['PrevUrl']) && true) {       $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];     }     header("Location: " . $MM_redirectLoginSuccess );   }   else {     header("Location: ". $MM_redirectLoginFailed );   } } ?>     Vertriebspartner Login
    Benutzername:
    Passwort:
    Als passwortgeschützte Seite wurde die Datei „login-ok.php“ erstellt:
    0)   $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];   $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);   header("Location: ". $MM_restrictGoTo);   exit; } ?>     Login ok
    Abmelden 
    Das Einloggen funktioniert, jedoch werden scheinbar die Werte „Benutzer“ und „Passwort“ nicht an die passwortgeschützte Seite übergeben. Denn anstelle der „Login-ok“-Seite wird nach der Eingabe des korrekten Benutzernamens und Passworts, entweder die Fehlerseite „502 Bad Gateway“ angezeigt (falls bei dem Punkt „Bei verweigertem Zugriff hierhin gehen“: testlogin.php angegeben wurde) oder es wird eben diese Seite angezeigt, die aufgerufen werden soll, wenn der Zugriff verweigert ist. („Bei verweigertem
    Zugriff hierhin gehen“: zugriff-verweigert.php)
    Ich hoffe, es kann mir jemand helfen, da ich nur Anfängerkenntnisse in PHP und Datenbankanbindung besitze. Vielen Dank im Voraus!

    Quellcode von testlogin.php:
    <?php
    //initialize the session
    if (!isset($_SESSION)) {
      session_start();
    // ** Logout the current user. **
    $logoutAction = $_SERVER['PHP_SELF']."?doLogout=true";
    if ((isset($_SERVER['QUERY_STRING'])) && ($_SERVER['QUERY_STRING'] != "")){
      $logoutAction .="&". htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_GET['doLogout'])) &&($_GET['doLogout']=="true")){
      //to fully log out a visitor we need to clear the session varialbles
      $_SESSION['MM_Username'] = NULL;
      $_SESSION['MM_UserGroup'] = NULL;
      $_SESSION['PrevUrl'] = NULL;
      unset($_SESSION['MM_Username']);
      unset($_SESSION['MM_UserGroup']);
      unset($_SESSION['PrevUrl']);
      $logoutGoTo = "/unternehmen/vertriebspartner.html";
      if ($logoutGoTo) {
        header("Location: $logoutGoTo");
        exit;
    ?>
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "/unternehmen/vertriebspartner/zugriff-verweigert.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Unbenanntes Dokument</title>
    </head>
    <body>
    <h1>Login ok</h1>
    <a href="<?php echo $logoutAction ?>">Abmelden</a>
    </body>
    </html>

  • Image not displaying correctly Photoshop CS5 Extended V 12.1. (Same file OK in PS Elements)

    I am having a problem with Photoshop CS5 Extended V 12.1.
    The problem:
    When I open some files, some shades of BLUE colour is displayed as BLACK
    However the same file  opens and displays correctly if I open it using Photoshop Elements V9.0.3.
    When I save the file as JPEG and re-open it, the problem returns.
    Opening the JPEG file in any other application, including PS Elements, does not cause the problem
    Source of files
    The original files came from a Nikon camera, saved in RAW format. It is possible that the original files were corrupted in some way as the shots had an unusual blue cast - which was easily resolved by Photoshop when I originally opened the RAW files. However, I'm not sure.
    The problem is not universal as I've not been able to reproduce it with any other files (RAW or JPEG).
    I have calibrated my monitor display settings sRGB IEC61966-2.1 (default)
    Other information:
    Adobe Photoshop Version: 12.1
    Operating System: Windows 7 64-bitVersion: 6.1 Service Pack 1
    System architecture: Intel CPU
    Family:6,
    Model:10,
    Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 8
    Processor speed: 3395 MHz
    Built-in memory: 8153 MB
    Free memory: 5089 MB
    Memory available to Photoshop: 7147 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K

    Thank you for yur reply, Curt. Yes, I do have the original RAW file. When I open it in PSE and PS, the colours appear correctly AT FIRST as shown here:
    However, when I select "Open Image", it appears as here:
    You will see that the blues in the lady's scarf and the wolly hat of a man in the forground are appearing as black. However, when the file is saved as JPEG or PNG and printed or viewed using PSE or Pait, or any other medium (even Premiere Elements), the colurs arer fine.
    However, the same process when followed in PSE, does not result in the same outcome. The image displays correctly.

  • How to save photoshop CS5 extended edited photos in iphoto on Mac?

    Hi this is my first post on here, so i'm unsure if i have put my question in the right place? etc....?
    I have only just purchased CS5 extended and have just been on a intro course, and today decided to edit a few of my photos in photoshop.
    i opened my photo from iphoto and edited it fine, that part was fairly easy to do, once i had finished i then went to file to save my photo, which i thought was straight forward as per click on 'save' once i had done that i closed the photo down, then moved onto another photo to edit.
    after which i was looking through the iphoto folder, and i noticed that the photos i had edited using photoshop were still showing the parts of the picture that i had edited out i.e. overhead cables were showing in the picture! when i clicked on the photo to make it larger the edited version appeared.. i.e. no cables were showing!!
    now am i going mad here, how has this happened? the next time i did a 'save as' and selected to save as and replace the original, but yet again the small picture in the folder is still displaying the original, now how am i going to know which photos have been edited and which haven't unless i click on them to make them large and show up the edited version!!!!!  do i need to save the edited photo in a differnt way?
    sorry for the long post but i wanted to give you all the info i thought might be of help.
    Many thanks if you have read this far and i await your comments....Marie

    Forget about iPhoto. Honestly.
    iPhoto doesn't play nice with Photoshop—or any other program, as a matter of fact.
    iPhoto uses a "libraries" paradigm and buries your images deep in "packages" only iPhoto can access.  (Sure, there are workarounds, but what a hassle!).
    I routinely delete the iPhoto application from all my OS X installs.
    I suppose what you can do—if you insist on using that program—is to open the Photoshop-edited image with iPhoto and do a Save As from iPhoto itself.
    Wo Tai Lao Le  <======  (unabashed iPhoto hater)
    我太老了

  • Formcentral - Antworten - Zugriff auf die Dateianlagen

    Leider werden bei Formscentral bei den E-Mail-Benachrichtigungen die eingebetteten Dateianlagen nicht mitgesendet.
    Diese müssen manuell in der Formscentral-Antworten-Cloud abgeholt werden.
    Bei einer 2000er DSL-Leitung ist dies leider nicht praktikabel, da durchaus Anhänge von bis zu 10 MB übermittelt werden sollen.
    Gibt es eine Möglichkeit über die CreativeCloud auf die Antworten-Tabelle zuzugreifen.
    Dann könnte durch die Dateisynchronisierung einen Datenabgleich im Hintergrund erfolgen und die Dateianhänge wären lokal verfügbar.

    Ähm, ich stelle mich jetzt mal dumm: Was ist "CS5 Extended"? Sorry, hier liegt ein fundamentales Misverständnis vor. Klar gibt's Photoshop CS5 Extended, aber das war's dann auch schon - es ist eben nur Photoshop und keine Suite (siehe Produktübersicht). Illustrator mußt du dann schon noch extra kaufen, was aber so nicht möglich ist bei Edu. Also wirst du eine Suite nehmen müssen, was je nachdem, ob dein eines Jahr "Wartezeit", bis du wieder berechtigt bist, das nächste Edu Produkt zu kaufen, schon vorbei ist, vielleicht auch nicht von heute auf morgen möglich ist... Verfahrene Kiste, würde ich sagen und ohne zusätzliches Geldausgeben definitiv nicht lösbar.
    Mylenium

  • CS5 Extended Student/Teacher Trade?

    I purchased the CS5 Extended Student/Teacher Version of Photoshop before the new release came out this year. I was never able to get it to work and very shortly after purchasing it, I lost the software box. I just recently recovered it and found that I bought the Windows version instead of Mac. (Big, huge slap to the forehead.)
    Although the software has been opened, it has never been used, nor was it licensed (at least as far as I can recall). I was never able to get past the Photoshop folder when I attempted to download it. I purchased it from Amazon and have exceeded my return date. Is there ANY way that I can sell or trade it for the Mac version of the same software? Money is tight and I'd really hate to have to trash a perfectly good version. Any pointers?

    You could buy the commercial upgrade to CS6, then sell that combined with your "qualifying" S&T CS5 version. That's pretty much the only legal way (things being that you would transfer a perfectly valid commercial CS6 license). Everything else would have to fall into a "friends & family" category, meaning if you were to give this to some nice or cousin it would probably also be okay. Under no circumstances, though, should you try to sell just the S&T version on eBay or whatever. It's only gonna end up in trouble for everyone.
    Mylenium

  • Photoshop touch zugriff auf Fotos

    bei meinem ps touch für ipad 2 erscheint immer die Meldung "Dieses App hat keine Zugriff auf ihre lokalen Fotos" obwohl ich bei Einstellungen/Voreinstellungen/Zugriff auf lokale Fotos auf 1stehen habe.
    Mach ich was falsch?
    Danke

    The Samsung App Store's apps are a little different than that of their Google Play counterparts. (If I remember, certain Galaxy tablet owners got PS Touch for free as well.) Like Amazon's app store, they're usually a little behind.
    In any case, I could have sworn they were higher in version number than 1.4.2. Did you go into the Samsung store app to find out if there are any updates?

  • CS5 stürzt auf MacBook Pro Retina ständig ab

    Hallo, seitdem ich meine CS5 Design Premium auf einen MacBook Pro 13 Retina installiert habe, stürzen die Programme innerhalb weniger Minuten ab. Vor allem während der Schriftauswahl. Derartige Probleme gab es auf meinen vorherigen Rechnern (MacMini und MacBook Air) nicht. Das OS ist auf den aktuellsten Stand und ein Deinstallieren der Programme hat auch nichts gebracht. Was kann der Grund sein?

    CS5 ist ja nicht kompatibel mit Yosemite.
    Erst CC und später können mit Retina Display.

  • 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

Maybe you are looking for

  • DV Stream Export Settings, Locked or Unlocked Audio

    When capturing VHS tapes into Final Cut Express, I always keep my Canopus ADVC110 at the default settings, including locked audio. I don't understand why Final Cut Express' export as DV Stream includes a little box to check or uncheck, for locked or

  • How to get mail from Outlook to SAP GUI (workflow)

    Hi All , How can we get a mail from outlook or personal mail into SAP GUI . can it be used as an event for 'wait for event step ' in workflow . ? Thanks , Naval bhatt

  • Dynamic List Populate in Tabular Report

    Hi All,      Could anybody help / advise me out in getting done the following requirement in Oracle APEX 4.1. I tried using AJAX / visited DENES KUBICEK application but its getting complicated with AJAX. Any quick inputs will be highly appreciated I

  • Driver for Ipod Nano 3rd Gen

    Hi Just brought Ipod nano 3rd gen and plugged it into PC. It is not able to install properly - computer says it can't find driver. Any ideas how to resolve this?

  • TS1347 HOW DO I SYNC MICROSOFT WORKS CALENDER

    I have an iPhone 3GS. I use Microsoft Works Calender on my PC. I want to sync. this calender with my iPhone, but when I go into "Info" in iTunes it says there is no suitable calender to sync. with. How do I get iTunes to see the Works calender, so th