Remove Adobe Image Ready CS2 but how

I use Photoshop CS2 all the time. Now somewhere also have Adobe Image Ready CS2 which I do not want or cannot.  My editor images try to open in Imageready, but cannot.  How can I remove Imageready without deleting Photoshop as well.

Virginia

Probably you just need to define which program opens a file.

What operating system do you use?

You open the images of the editor of the bridge or the inside of an operating system (windows Explorer)?

No, you can't remove just imageready without unistalling all photoshop cs2 program, as far as I know.

Tags: Photoshop

Similar Questions

  • IAM trying to install Adobe In Design CS2 but only allowing the use of 30 days... Do you know how I can get this to run as needed?

    IAM trying to install Adobe In Design CS2 but only allowing the use of 30 days... Do you know how I can get this to run as needed?

    The activation servers have been closed several years ago. See Adobe - CS2 downloads

  • Get all the images of devices, but how do I know in what images is seclected

    Hello

    in my application I want to show all the images in the first screen, after selecting any image in all we will see in the next screen (full screen) actually I get all images but problem how do I know what image is clicked

    I used this code...

    package mypackage;

    import java.io.IOException;
    import java.io.InputStream;
    to import java.util.Enumeration;
    import java.util.Vector;

    Import javax.microedition.io.Connector;
    Import javax.microedition.io.file.FileConnection;

    Import net.rim.device.api.math.Fixed32;
    Import net.rim.device.api.system.Bitmap;
    Import net.rim.device.api.system.EncodedImage;
    Import net.rim.device.api.ui.Field;
    Import net.rim.device.api.ui.Manager;
    Import net.rim.device.api.ui.component.BitmapField;
    Import net.rim.device.api.ui.component.ButtonField;
    Import net.rim.device.api.ui.container.FlowFieldManager;
    Import net.rim.device.api.ui.container.MainScreen;
    Import net.rim.device.api.util.Comparator;
    Import net.rim.device.api.util.SimpleSortingVector;

    /**
    * A class that extends the class screen, which offers default standard
    * behavior for BlackBerry GUI applications.
    */
    / public final class screen extends MyScreen
    {

    private static final String DEVICE_DIR_PATH = System
    .getProperty ("fileconn.dir.photos");
    private static final String SD_IMAGE_DIR_PATH = System
    .getProperty ("fileconn.dir.memorycard.photos");
    private static final String OS6_CAMERA_PATH = "file:///store/home/user/camera/";
    private static final String OS6_SD_CARD_PATH = "file:///SDCard/BlackBerry/camera/";

    public static final int DEVICE_AND_SD = 0;
    public static final int DEVICE_MEM = 1;
    public static final int SD_CARD = 2;
    public static final int OS6_CAMERA = 3;
    public static final int OS6_SD_CAMERA = 4;
    public static final int DEVICE_ALL = 5;
    private static String [] _allImagePaths = null;
    private EncodedImage [encodedbitmap];
    Private bitmap image in Bitmap [];
    private BitmapField [imagebitmapField];

    int dataSize;
    private ButtonField [] bitmapf;

    /**
    * Creates a new object of MyScreen
    */
    public MyScreen()
    {
    Set the displayed title of the screen
    setTitle ("MyTitle");

    String [] imagePaths = getImagePaths (DEVICE_ALL);
    FlowFieldManager imageFlowField = FlowFieldManager(Manager.VERTICAL_SCROLL | nouveau Manager.VERTICAL_SCROLLBAR);
    If (imagePaths! = null & imagePaths.length > 0) {}
    encodedbitmap = new EncodedImage [imagePaths.length];
    image bitmap = new Bitmap [imagePaths.length];
    imagebitmapField = new BitmapField [imagePaths.length];

    for (int i = 0; i)< imagepaths.length;="" i++)="">
    encodedbitmap [i] = loadEncodedImage ([i] imagePaths);
    [i] bitmap image is scaleImage (encodedbitmap [i], 200, 100);.
    imagebitmapField [i] = new BitmapField(bitmap[i],Field.FOCUSABLE);
    imageFlowField.add (imagebitmapField [i]);
    }
    }
    Add (imageFlowField);

    }

    public Bitmap image scaleImage (EncodedImage img, int width, int height) {}

    int currentWidthF32 = Fixed32.toFP (img.getWidth ());
    int currentHeightF32 = Fixed32.toFP (img.getHeight ());

    If (height == 0) {}
    int requiredWidth = Fixed32.toFP (width);
    int x = Fixed32.div (currentHeightF32, currentWidthF32);
    int y = Fixed32.mul (x, requiredWidth);
    int scaleX = Fixed32.div (currentWidthF32, requiredWidth);
    int scaleY = Fixed32.div (currentHeightF32, y);
    IMG = img.scaleImage32 (scaleX, scaleY);
    } else {}
    int currentWidthFixed32 = Fixed32.toFP (img.getWidth ());
    int currentHeightFixed32 = Fixed32.toFP (img.getHeight ());
    int requiredHeightFixed32 = Fixed32.toFP (height);
    int requiredWidthFixed32 = Fixed32.toFP (width);
    int scaleXFixed32 = Fixed32.div (currentWidthFixed32,
    requiredWidthFixed32);
    int scaleYFixed32 = Fixed32.div (currentHeightFixed32,
    requiredHeightFixed32);
    IMG = img.scaleImage32 (scaleXFixed32, scaleYFixed32);

    }
    Return img.getBitmap ();
    }

    protected EncodedImage loadEncodedImage (String filePath) {}

    FileConnection connection = null;
    Byte [] byteArray = null;
    Image EncodedImage = null;
    Bitmap bitmap image = null;
    Try
    {
    Connection = (FileConnection) Connector.Open (FilePath);
    If (Connection.Exists ())
    {
    byteArray = byte [(int) connection.fileSize (new)];
    InputStream inputStream = connection.openInputStream ();
    inputStream.read (byteArray);
    inputStream.close ();
    image = EncodedImage.createEncodedImage (byteArray, 0, -1);
    }
    Connection.Close;
    }
    catch (System.Exception e)
    {
    System.out.println ("Exception" + try ());
    }
    return image;

    }

    public static String [] getImagePaths (int source) {}

    If get path for all do this recursively
    If (source == DEVICE_ALL) {}
    If (_allImagePaths! = null) {}
    Return _allImagePaths;
    }

    OS6 device Gallery
    String [] os6CameraSDPaths =
    getImagePaths (OS6_SD_CAMERA);

    OS6 Gallery of SD card
    String [] os6CameraPaths =
    getImagePaths (OS6_CAMERA);

    SD card Gallery
    String [] sdCardPaths = getImagePaths (SD_CARD);
    Gallery of the device
    String [] devicePaths =
    getImagePaths (DEVICE_MEM);

    Combine the two in an ImageViewer
    int numOS6CameraSDPaths = os6CameraSDPaths! = null? os6CameraSDPaths.length
    : 0 ;
    int numOS6CameraPaths = os6CameraPaths! = null? os6CameraPaths.length
    : 0 ;
    int numSDCardPaths = sdCardPaths! = null? sdCardPaths.length: 0;
    int numDevicePaths = devicePaths! = null? devicePaths.length: 0;

    int totalNumPaths = numDevicePaths + numSDCardPaths
    + numOS6CameraPaths + numOS6CameraSDPaths;
    If (totalNumPaths > 0) {}
    String of paths [] = new String [totalNumPaths];

    If (os6CameraSDPaths! = null) {}
    System.arraycopy (os6CameraSDPaths, 0, 0, paths)
    numOS6CameraSDPaths);
    }
    If (os6CameraPaths! = null) {}
    System.arraycopy (os6CameraPaths, 0, paths,)
    (numOS6CameraSDPaths, numOS6CameraPaths);
    }
    If (sdCardPaths! = null) {}
    System.arraycopy (sdCardPaths, 0, numOS6CameraSDPaths)
    + numOS6CameraPaths, numSDCardPaths);
    }
    If (devicePaths! = null) {}
    System.arraycopy (devicePaths, 0, paths, numOS6CameraSDPaths)
    + numOS6CameraPaths, + numSDCardPaths,
    numDevicePaths);
    }

    _allImagePaths = sortPaths (paths);

    Return _allImagePaths;
    } else {}
    Returns a null value.
    }
    }

    Set the path to look for
    String imagePath = DEVICE_DIR_PATH;
    If (source == SD_CARD) {}
    imagePath = SD_IMAGE_DIR_PATH;
    }

    If (source == OS6_CAMERA) {}
    imagePath = OS6_CAMERA_PATH;
    }

    If (source == OS6_SD_CAMERA) {}
    imagePath = OS6_SD_CARD_PATH;
    }

    Listed in the directory looking for image files
    ImagePaths vector = new Vector();
    FileConnection imageDir = null;
    try {}
    imageDir = Connector.open (imagePath) (FileConnection);
    If (imageDir! = null) {}
    Enumeration = imageDir.list ();

    imageDir.close ();
    While (enumeration.hasMoreElements ()) {}
    String imageName = (String) enumeration.nextElement ();
    If (isSupported (imageName)) {}
    imagePaths.addElement (imagePath + imageName);
    }
    }
    }
    } catch (Exception e) {}
    XLogger.error (ImagePath.class, "cannot read file:")
    + e.getMessage ());
    } {Finally
    If (imageDir! = null) {}
    try {}
    imageDir.close ();
    } catch (IOException e) {}
    XLogger.error (ImagePath.class, "cannot close the file:")
    + e.getMessage ());
    }
    }
    }

    If there is no images don't return the null value
    If (imagePaths.size)<= 0)="">
    Returns a null value.
    }

    Return the results in an array of strings
    _allImagePaths = new String [imagePaths.size ()];
    imagePaths.copyInto (_allImagePaths);
    Return _allImagePaths;
    }

    private static String [] sortPaths (String [] paths) {}
    Sort the paths of the time, where modified files.
    Class PathAndLastModified {}

    timeStamp long private;
    private String path;

    {} public void setTimeStamp (long timeStamp)
    this.timeStamp = timeStamp;
    }

    {} public void setPath (String path)
    This.Path = path;
    }

    public String GetExtension() {}
    Returns the path;
    }
    }

    Comparator to sort paths
    Comparator pathComparator = new Comparator() {}
    public int compare (Object o1, Object o2) {}
    If (((PathAndLastModified) o1) .timeStamp)< ((pathandlastmodified)o2).timestamp="" )="">
    Return 1;
    } ElseIf (((PathAndLastModified) o1) .timeStamp > .timeStamp (o2 (PathAndLastModified))) {}
    Returns - 1;
    } else {}
    return 0;
    }

    Return (int) (((PathAndLastModified) o2) .timeStamp - .timeStamp (o1 (PathAndLastModified)));
    }
    };

    Add the paths to the vector sorting
    SimpleSortingVector sortedPaths = new SimpleSortingVector();
    sortedPaths.setSortComparator (pathComparator);
    for (int i = 0; i)< paths.length;="" i++)="">
    String filePath = path [i];
    long lastModified = 0;

    FileConnection baseConn = null;
    try {}
    baseConn = (FileConnection), Connector.open (paths [i]);
    lastModified = baseConn.lastModified ();

    PathAndLastModified pathAndLastModified = new PathAndLastModified();
    pathAndLastModified.setPath (filePath);
    pathAndLastModified.setTimeStamp (lastModified);

    sortedPaths.addElement (pathAndLastModified);
    } catch (Exception e) {}
    Do nothing
    } {Finally
    {if(baseConn!=null)}
    try {}
    baseConn.close ();
    } catch (IOException e) {}
    Do nothing
    }
    }
    }
    }
    sortedPaths.reSort ();

    Browse to create an array of sorted paths
    String [] sortedArray = new String [sortedPaths.size ()];
    for (int i = 0; i)
    sortedArray [i] = ((PathAndLastModified) sortedPaths.elementAt (i)) .getPath ();
    }

    Return sortedArray;
    }

    private static Boolean isSupported (image String) {}
    Make sure that the image is of the correct type
    If (image == null) {}
    Returns false;
    }
    check the directory
    If (image.indexOf("/") > = 0) {}
    Returns false;
    }

    int delimiterIndex = image.indexOf(".");
    If (delimiterIndex ==-1) {}
    probably a directory
    Returns false;
    }

    the text is a list of extensions supported
    String [] extensions = {".jpg", ".jpeg"};
    for (int i = 0; i)< extensions.length;="" i++)="">
    If (image.length () > extensions [i] .length ()) {}
    Dim ext = image.substring (image.length)
    (-extensions [i] .length ());
    If (ext.equalsIgnoreCase (extensions [i])) {}
    Returns true;
    }
    }
    }
    Returns false;
    }
    }

    my suggestion was supposed to replace navigationclick on-screen.
    If you want to ignore it for the field that you do not have to use getLeafFieldWithFocus.

    I suggest that you think your code, don't write things and try to operate, fist think about something and then implement.
    our projects at the University were generally 80% design, 20% of coding - it was strange at first, but it produced a lot more code.

  • How to remove an image from a slide show in Adobe Muse

    In Adobe Muse, I created a slide show via slide show Options > Add Images. I know how to replace a picture, but how do I delete an image in the slideshow? I don't see that option anywhere.

    Thank you.

    ssimply select the thumbnail of the image you want to remove and click on Delete on your keyboard. You will need to turn on thumbnails in your slide show properties if you turned them in.

  • Images removed from the iPad 2 but memory still lots of pictures. How to solve this problem?

    The memory on my iPad 2 is full - 46, 7 GB of it's Photo Library. We have deleted a whole bunch of images and they don't show more but the memory usage has not changed. I can't find a way to solve this problem on the iPad, and when I connect it via the USB port on my Mac it does not appear in the finder. iTunes see it but does not seem to offer a way to remove the images. Photos sees images of the iPad but when I look at them on my Mac, it displays a large number of them - but then shows the larger thumbnails that contain only a couple of bunk rectangles - no images! Maybe those that have been deleted in the iPad, but space for everyone has not been abandoned? That would make sense but does not show how to fix it.

    You can connect the iPad to the computer running the most recent version of iTunes and in summary - watch in the bar of color at the bottom - how much of it is Photos and how is 'other '?

    Try a force restart

    Restart your iPhone, iPad or iPod touch - Apple Support

    If this does not help

    Look at this thread

    What is 'other' and what I can do about it - CSA

  • Just uploaded my first image of Stock, but adobe watermark is always on it.  How can I download my (paid in DollarPhoto) photos without watermark pls?

    Hi, I just came across to Adobe Stock PHoto Club Dollar.  Just uploaded my first image of Stock, but adobe watermark is always on it.  How can I download my (paid in DollarPhoto) photos without watermark pls?

    Hello

    Please check I downloaded my 10 free images and they all have the Adobe watermark on them, so I can't use them. Why do they have a watermark on them?

    Thank you

    Bev

  • Uninstall problem for Adobe photoshop CS and image ready CS.

    HI, I'm running windows 7 ultimate problem with the uninstall Adobe Photoshop CS and CS image ready. When I try the uninstall from the Control Panel, it shows that uninstall Adobe Photoshop CS and image ready CS completed successfully. But it has not been uninstalled. After uninstalling, I restart the computer but it always in the programs and features. Please help me.

    You have an installation CD that can run the uninstaller for you?

    Removal of Windows process «»

    Insert the Adobe Photoshop CS2 CD in your computer's CD drive.

    1. start the removal process.

    As with installation, the first window that appears requires you to choose a language for the installer. After you select a language and click OK, the software license agreement appears. Read the software license agreement. If you agree, click on accept. If you click on decline, Setup will stop.

    Click on install Photoshop CS2 in the main installation screen, click on next to the Welcome screen.

    2 disassembly and repair.

    When Photoshop CS2 is already installed, you have the option to repair the current version, which solves any problem that may have the version installed, or you can remove the currently installed version. Click on delete and click Next. »

    Photoshop help / install/uninstall Photoshop CS2
    http://helpx.Adobe.com/Photoshop/KB/install-uninstall-Photoshop-CS2.html

    http://www.Google.com.au/search?q=uninstalling+problem+for+Adobe+Photoshop+CS&SourceID=IE7&RLS=com.Microsoft:-to THE: IE-address & ie = & oe = & redir_esc = & ei = atJYUJKGJYiwiQfnr4HwDg

  • How to remove pictures of the iphone but not on icloud?

    Hello, I have an iphone 6 and I have a backup to icloud. I need to free up space on my iphone, I noticed when I delete a photo on my phone its disappear automatically icloud. Is there a way to remove photos from the phone, but keep about icloud?

    Thank you!

    iCloud Libray Photo is not a backup service; It is a synchronization service. Whatever you do a device is synchronized with all other devices, including your computer and iCloud. That's how it was designed to work.

    If you are running out of storage space on your device, choose to use a local library optimized photos. This will dynamically adjust the size of the library based on how much storage is available.

    Otherwise, you will need to disable iCPL and return to the management of your image sync via iTunes.

  • How can I remove an image in Photoshop

    How can I remove an image in Photoshop

    I did a test of an iPhone application and he transferred an image in Photoshop.

    I don't want to make adjustments or send it to Lightroom.
    I just want to remove permanently.

    It is a symbol of the garbage on the bottom right, but it is grayed out.

    I have a Mac with the latest Captain El 10.11.6 updates

    I have the monthly subscription of LR and PS version

    Thank you

    Greg

    Another site, they suggested that I hit the "clear recent" tab
    It worked, they all went, but those published are still in LR >
    I believe that this should be the answer.

  • CTRL + image [change perspective] PS. But how I do in artificial intelligence?

    Hello

    If I select a point on the image and press CTRL, I can change the perspective of the image. But how can I make the id on Adobe Illustrator?

    I have a picture in perspective. I try to make State of the bike. And put, but I can't...

    Could someone help me?

    <-* Google image.

    Here's a quick tutorial on the free transform tool: using the free transform tool. Work with objects in Adobe Illustrator CC | Only

    If it works, it is easier.

    Otherwise, it's the tool perspective grid. Set up the grid to match the bike, and then drag the machine on the grid.

    How to set perspective grids in Illustrator

  • the 10 images 'bought' show after I registered transfer DPC, but how do I see transfers additional image that I was expecting since the DPC transfer?

    the 10 images 'bought' show after I registered transfer DPC, but how do I see transfers additional image that I was expecting since the DPC transfer?

    Hello

    Please contact DPC to check the migration status.  They are not currently appear on your Adobe Stock account.

    Dollar Dollar Photo Club Photo Club - photo galleries free high quality royalty and vectors.

    Thank you

    Bev

  • I need help on how to remove Adobe CS3 on windows 7

    I need help on how to remove Adobe CS3 on windows 7. Have to use Adobe Creative Tool, but it does not work. He invites a message that 'the Installer database is corrupt". I need your help. Thank you

    Error «...» The Installer database is corrupt... "When you install Adobe Creative Suite 3 products

  • How can I remove an image from rogue to Captivate 7?

    I'm building a Captivate 7 project. I inserted an image in the display 5 and now this image appears on the following screens and I can't remove it. He is not on any of the master slides, but if I insert a new slide... This is! How can I remove this image of thugs?

    Find the first slide where it occurs, and then change its timing from the rest of the project to something else.

  • How can I remove the image of the mouse on a page scrolls in captivate 6

    Hi all

    (Captivate 6)


    I have a few pages where I had to scroll when capturing a video. I want to remove the images of the scroll mouse. I see that it is bound to a fullmotion.swf file in properties but I don't know how

    to delete the image.

    What I tried:

    1. replace the frame-by-frame empty mouse

    -bad result that audio button

    Does anyone have any ideas?

    I hope that I don't have to have a new video capture him and import it I have audio attached to it and do not know how to divide the audio and video, if it's the answer can you tell me how to split audio and video? If you have an easier solution, I'd love to hear it

    Thanks for the help

    Eddy

    Too bad. Resolved to my answer.

    1. my solution

    a. change the background at bottom even using a motion.flv no, worked like a charm with even

    audio

    Happy!

  • How to remove music on my mac but not on itunes

    How to remove music on my mac but not on iTunes. I have so many songs on my mac but I don't listen to any of them and I don't have any space so I need to empty it, can it be done on mac?

    You can't delete something, having yet again.

    Get an external drive and move the iTunes folder everything there.

Maybe you are looking for