How to stop images opening under panels

I have a standard workspace in CS5.  When I open an image or use the Fit on Screen command, an image opens with its right-hand area underneath the layers panel (and whatever panel is open above it).  Is there a way to tell CS5 to make the Fit to Screen command not allow images to extend under open panels, please? 
Thanks.

It usually depends on how your workspace is set up.
If like in the first screenshot the panels are docked and open, then
that doesn't happen.
If like in the second screenshot one of the panels is in the flyout position, then
that will happen.
MTSTUNER

Similar Messages

  • How to stop iphoto opening automatically.

    Hi everyone,
    I have forgotten how to stop iphoto opening up when I put my camera memory card in the reader.
    I have Snow Leopard 10.6.8 and I am now using Photoshop Elements 6 on my Macbook.
    Thanks in advance and a happy and healthy New Year from England,
    Alan

    Hi,
    Thanks for your quick answer but I managed to do it through Image Capture.
    You have to have the camera or reader connected then open Image Capture.
    I clicked on the device ( name of card reader ) and in the bottom left I could choose from a drop down menu where I wanted the card to open.
    Thanks again,
    Alan

  • How to stop iphoto opening.

    Hi Everyone,
    How do I stop iphoto opening every time I put a card in my card reader. I use Photo Elements and it is a nuisance having to quit iphoto each time. I have removed it from the dock but it still opens. I am new to Panther and iphoto so I am still feeling my way around.
    Regards from England,
    Alan

    Open the Application IMAGE CAPTURE. Go to preferences to select what if anything happens when you insert your card in the reader.
    Image Capture preferences determine this setting. Don't ask me why
    Peter

  • How to make image out of panel?

    hi,
    i have a JPanel object and i drawn something on this panel. it also contains somemore components. can anyone say how to create image (like .jpg) from what is getting displayed in my panel.
    thankx in advance.

    Found this in the newgroups
    If you are using Java 2D, you can create a JPEG image by using the
    com.sun.image.codec.jpeg package. The code below creates a JPEG image and
    saves it to a file.
    public void save(BufferedImage destImage, String filename) {
    try {
    ByteArrayOutputStream boutstream = new ByteArrayOutputStream();
    JPEGImageEncoder enc = JPEGCodec.createJPEGEncoder(boutstream);
    enc.encode(destImage);
    FileOutputStream fimage = new FileOutputStream(new File(filename));
    boutstream.writeTo(fimage);
    fimage.close();
    } catch (Exception e) { }
    The code snippet below shows how to crerate a BufferedImage:
    BufferedImage bi = new BufferedImage((int)imWid,
    (int)(imHt),
    BufferedImage.TYPE_INT_RGB);
    Graphics2D g2d = bi.createGraphics();
    g2d.drawImage(img, dispTx,this);
    img : Your image object.
    dispTx: The Affine Transform.
    You can use other drawImage()methods for drawing images.
    Once the image is drawn, you can save it using the save() method.

  • How to drag image in left panel then drop into right panel??

    Dear friends.
    I have following code, it is runnable, just add two jpg image files is ok, to run.
    I tried few days to drag image from left panel then drop into right panel or vice versa, but not success, can any GUI guru help??
    Thanks.
    Sunny
    [1]. main code/calling code:
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ImagePanelCall extends JComponent {
         public  JSplitPane ImagePanelCall() {
              setPreferredSize(new Dimension(1200,300));
              JSplitPane          sp = new JSplitPane();
              sp.setPreferredSize(new Dimension(1200,600));
              sp.setOrientation(JSplitPane.HORIZONTAL_SPLIT);
              add(sp);
              ImagePanel     ip = new ImagePanel();
              ImagePanel     ip1 = new ImagePanel();
              ip.setPreferredSize(new Dimension(600,300));
              ip1.setPreferredSize(new Dimension(600,300));
              sp.setLeftComponent(ip);// add left part
              sp.setRightComponent(ip1);// add right part
              sp.setVisible(true);
              return sp;
         public static void main(String[] args) {
              JFrame frame = new JFrame("Test transformable images");
              ImagePanelCall  ic = new ImagePanelCall();
              frame.setPreferredSize(new Dimension(1200,600));
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.getContentPane().add(ic.ImagePanelCall(), BorderLayout.CENTER);
              frame.pack();
              frame.setVisible(true);
    }[2]. code 2
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ImagePanel extends JComponent {
         private static final Cursor DEFAULT_CURSOR = new Cursor(Cursor.DEFAULT_CURSOR);
         private static final Cursor MOVE_CURSOR = new Cursor(Cursor.MOVE_CURSOR);
         private static final Cursor VERTICAL_RESIZE_CURSOR = new Cursor(Cursor.N_RESIZE_CURSOR);
         private static final Cursor HORIZONTAL_RESIZE_CURSOR = new Cursor(Cursor.W_RESIZE_CURSOR);
         private static final Cursor NW_SE_RESIZE_CURSOR = new Cursor(Cursor.NW_RESIZE_CURSOR);
         private static final Cursor NE_SW_RESIZE_CURSOR = new Cursor(Cursor.NE_RESIZE_CURSOR);
         public Vector images;
         * Create an ImagePanel with two images in.
         * A MouseHandler instance is added as mouse listener and mouse motion listener.
         public ImagePanel() {
              images = new Vector();
              images.add(new TransformableImage("swing/dnd/Bird.gif"));
              images.add(new TransformableImage("swing/dnd/Cat.gif"));
              setPreferredSize(new Dimension(600,600));
              MouseHandler mh = new MouseHandler();
              addMouseListener(mh);
              addMouseMotionListener(mh);
         * Simply paint all the images contained in the Vector images, calling their method draw(Graphics2D, ImageObserver).
         public void paintComponent(Graphics g) {
              Graphics2D g2D = (Graphics2D)g;
              for (int i = images.size()-1; i>=0; i--) {     
                   ((TransformableImage)images.get(i)).draw(g2D, this);
         * Inner class defining the behavior of the mouse.
         final class MouseHandler extends MouseInputAdapter {
              private TransformableImage draggedImage;
              private int transformation;
              private int dx, dy;
              public void mouseMoved(MouseEvent e) {
                   Point p = e.getPoint();
                   TransformableImage image = getImageAt(p);
                   if (image != null) {
                        transformation = image.getTransformation(p);
                        setConvenientCursor(transformation);
                   else {
                        setConvenientCursor(-1);
              public void mousePressed(MouseEvent e) {
                   Point p = e.getPoint();
                   draggedImage = getImageAt(p);
                   if (draggedImage!=null) {
                        dx = p.x-draggedImage.x;
                        dy = p.y-draggedImage.y;
              public void mouseDragged(MouseEvent e) {
                   if (draggedImage==null) {
                        return;
                   Point p = e.getPoint();
                   repaint(draggedImage.x,draggedImage.y,draggedImage.width+1,draggedImage.height+1);
                   draggedImage.transform(p, transformation,dx,dy);
                   repaint(draggedImage.x,draggedImage.y,draggedImage.width+1,draggedImage.height+1);
              public void mouseReleased(MouseEvent e) {
                   Point p = e.getPoint();
                   draggedImage = null;
         * Utility method used to get the image located at a Point p.
         * Returns null if there is no image at this point.
         private final TransformableImage getImageAt(Point p) {
              TransformableImage image = null;
              for (int i = 0, n = images.size(); i<n; i++) {     
                   image = (TransformableImage)images.get(i);
                   if (image.contains(p)) {
                        return(image);
              return(null);
         * Sets the convenient cursor according the the transformation (i.e. the position of the mouse over the image).
         private final void setConvenientCursor(int transfo) {
              Cursor currentCursor = getCursor();
              Cursor newCursor = null;
              switch (transfo) {
                   case TransformableImage.MOVE : newCursor = MOVE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP : newCursor = VERTICAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM : newCursor = VERTICAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_LEFT : newCursor = HORIZONTAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_RIGHT : newCursor = HORIZONTAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP_LEFT_CORNER : newCursor = NW_SE_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP_RIGHT_CORNER : newCursor = NE_SW_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM_LEFT_CORNER : newCursor = NE_SW_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM_RIGHT_CORNER : newCursor = NW_SE_RESIZE_CURSOR;
                        break;
                   default : newCursor = DEFAULT_CURSOR;
              if (newCursor != null && currentCursor != newCursor) {
                   setCursor(newCursor);
         public static void main(String[] args) {
              JFrame frame = new JFrame("Test transformable images");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.getContentPane().add(new ImagePanel(), BorderLayout.CENTER);
              frame.pack();
              frame.setVisible(true);
    }[3]. code 3
    import java.awt.*;
    import javax.swing.*;
    import java.awt.image.*;
    public final class TransformableImage extends Rectangle {
         public static final int MOVE = 0;
         public static final int RESIZE_TOP = 10;
         public static final int RESIZE_BOTTOM = 20;
         public static final int RESIZE_RIGHT = 1;
         public static final int RESIZE_LEFT = 2;
         public static final int RESIZE_TOP_RIGHT_CORNER = 11;
         public static final int RESIZE_TOP_LEFT_CORNER = 12;
         public static final int RESIZE_BOTTOM_RIGHT_CORNER = 21;
         public static final int RESIZE_BOTTOM_LEFT_CORNER = 22;
         public static final int BORDER_THICKNESS = 5;
         public static final int MIN_THICKNESS = BORDER_THICKNESS*2;
         private static final Color borderColor = Color.black;
         private Image image;
         * Create an TransformableImage from the image file filename.
         * The TransformableImage bounds (inherited from the class Rectangle) are setted to the corresponding values.
         public TransformableImage(String filename) {
              ImageIcon ic = new ImageIcon(filename);
              image = ic.getImage();
              setBounds(0,0,ic.getIconWidth(), ic.getIconHeight());
         * Draw the image rescaled to fit the bounds.
         * A black rectangle is drawn around the image.
         public final void draw(Graphics2D g, ImageObserver observer) {
              Color oldColor = g.getColor();
              g.setColor(borderColor);
              g.drawImage(image, x, y, width, height, observer);
              g.draw(this);
              g.setColor(oldColor);
         * Return an int corresponding to the transformation available according to the mouse location on the image.
         * If the point p is in the border, with a thickness of BORDER_THICKNESS, around the image, the corresponding
         * transformation is returned (RESIZE_TOP, ..., RESIZE_BOTTOM_LEFT_CORNER).
         * If the point p is located in the center of the image (i.e. out of the border), the MOVE transformation is returned.
         * We allways suppose that p is contained in the image bounds.
         public final int getTransformation(Point p) {
              int px = p.x;
              int py = p.y;
              int transformation = 0;
              if (py<(y+BORDER_THICKNESS)) {
                   transformation += RESIZE_TOP;
              else
              if (py>(y+height-BORDER_THICKNESS-1)) {
                   transformation += RESIZE_BOTTOM;
              if (px<(x+BORDER_THICKNESS)) {
                   transformation += RESIZE_LEFT;
              else
              if (px>(x+width-BORDER_THICKNESS-1)) {
                   transformation += RESIZE_RIGHT;
              return(transformation);
         * Move the left side of the image, verifying that the width is > to the MIN_THICKNESS.
         public final void moveX1(int px) {
              int x1 = x+width;
              if (px>x1-MIN_THICKNESS) {
                   x = x1-MIN_THICKNESS;
                   width = MIN_THICKNESS;
              else {
                   width += (x-px);
                   x = px;               
         * Move the right side of the image, verifying that the width is > to the MIN_THICKNESS.
         public final void moveX2(int px) {
              width = px-x;
              if (width<MIN_THICKNESS) {
                   width = MIN_THICKNESS;
         * Move the top side of the image, verifying that the height is > to the MIN_THICKNESS.
         public final void moveY1(int py) {
              int y1 = y+height;
              if (py>y1-MIN_THICKNESS) {
                   y = y1-MIN_THICKNESS;
                   height = MIN_THICKNESS;
              else {
                   height += (y-py);
                   y = py;               
         * Move the bottom side of the image, verifying that the height is > to the MIN_THICKNESS.
         public final void moveY2(int py) {
              height = py-y;
              if (height<MIN_THICKNESS) {
                   height = MIN_THICKNESS;
         * Apply a given transformation with the given Point to the image.
         * The shift values dx and dy are needed for move tho locate the image at the same relative position from the cursor (p).
         public final void transform(Point p, int transformationType, int dx, int dy) {
              int px = p.x;
              int py = p.y;
              switch (transformationType) {
                   case MOVE : x = px-dx; y = py-dy;
                        break;
                   case RESIZE_TOP : moveY1(py);
                        break;
                   case RESIZE_BOTTOM : moveY2(py);
                        break;
                   case RESIZE_LEFT : moveX1(px);
                        break;
                   case RESIZE_RIGHT : moveX2(px);
                        break;
                   case RESIZE_TOP_LEFT_CORNER : moveX1(px);moveY1(py);
                        break;
                   case RESIZE_TOP_RIGHT_CORNER : moveX2(px);moveY1(py);
                        break;
                   case RESIZE_BOTTOM_LEFT_CORNER : moveX1(px);moveY2(py);
                        break;
                   case RESIZE_BOTTOM_RIGHT_CORNER : moveX2(px);moveY2(py);
                        break;
                   default :
    }

    I gave you a simple solution in your other posting. You never responded to the suggestion stating why the given solution wouldn't work, so it can't be that urgent.

  • How to stop iPhoto opening when connecting a device

    I want to stop iphoto opening when I connect my iphone, I can't find this in iphoto's preferences, any ideas?
    This is iphoto 6

    That worked thank you
    Just to clarify, you have to have the device connected to alter the preference.

  • How to stop from opening the notification message automatically.

    In the notification list I can see all my notifications similar to a mail box.
    Eg. If the top most notification is that of Leave of Absence approval and the second one on the list is an appraisal notification.
    Currently after I approve or reject my first notification (Leave notification),
    the system automatically opens the second one in the list.
    How do I avoid this and the second notification namely the appraisal one as per the example should be openned only if I click on it.

    Hi Kerri,
    You should always pay attention when installing software because often, a software installer includes optional installs, such as this adware. Be very careful what you agree to install.<br>
    Adware gets on your computer after you have installed a freeware software (video recording/streaming, download-managers or PDF creators) that had bundled into their installation this browser hijacker.
    You can use the below steps to revert back to adware-less Firefox.
    1) <u>Reset Prefs</u>
    *Navigate to '''about:config''' in your Address Bar
    *Press the "I'll be careful, I promise!" button to proceed
    *Search for <b>iWebar</b> and reset all prefs that pull up by right clicking > Reset
    2) Remove any programs that you don't recognize or remember installing from your Control Panel (Start > Control Panel > Uninstall a Program)
    3) Remove any extensions that you don't recognize or remember installing from Firefox.
    *(Press the menu button ([[Image:new fx menu]] > Add-ons > Extensions)
    4) Download ADW Cleaner to wipe out any remnants of the adware.
    *http://www.bleepingcomputer.com/download/adwcleaner/

  • How to send images into another panel

    hi i got two panels
    and one panel creates a couple of images
    and the confusing thing is that i don't want that panel to display my images
    but i want the other side panel to display these images..
    but i don't know how to do it.
    actually i can create two panels in one class and just add them up, but
    my code is quite long and i need to separate these two panels..

    sorry i mean JLabel
    i want to send my JLabel to another panel....

  • How to stop adverts opening on their own when googling

    whenever i google, like when I'm researching for college work, random advertisements open whenever i click a link, in a new tab. it is sometimes adverts, sometimes saying I've 'won' and sometimes that mac keeper. how do i stop this from happening? it is driving me crazy! also on some pages certain words on the site and capitalised (individual words) and underlined and are blue so they are hyper linked and if i hover my mouse over the word there is an advert linked to it! anybody any ideas? Many Thanks

    First try
    Remove unwanted adware that displays pop-up ads and graphics on your Mac
    Next:
    Adwaremedic: Removes all known adware from your Mac
    If you can't download it since the malware is preventing it then see:
    https://discussions.apple.com/docs/DOC-7792
    However, if you have prevent popups checked in Safari's preferences it is likely just javascript on the sit doing that. You can get extensions that prevent javascript but a lot of javascript is necessary for the sites to perform their function.

  • How to stop safari opening a new tab which relates to inappropriate viewing

    When I'm in safari a new tab opens to reveal an awful **** site, why is this happening and how can I stop it? I've had my iPad for 18 months and this has only just started to happen.

    Just updating this thread with the solution in this case.
    Solution: Go into your template and remove the reference "_blank" which is causing this to open in a new tab.
    - http://screencast.com/t/sqy18afr
    Kind regards,
    -Sidney

  • How to stop iPhoto opening when I connect iPad

    Calibre enabled me to stop iTunes from opening every time I connected my iPad, but since Yosemite, it's now iPhoto that opens every time we're joined. I don't understand iPhoto, which never wants to do anything I want it to, so I almost never use it. Not only that, it takes an age to fully open while it tries to read photos from my iPad, the Cloud and probably from the Other Side.
    I am guessing this might be connected with iCloud, but I want to stop it. I've looked at iPhoto's Preferernces, I've looked at a number of things in System Preferences, but so far I can't stop this automatic opening.

    OK, I found it, but I can't see how I can control it. I have tried to insert a screen shot. Despite it being only 211KB and 911 x 542 in size, this program will not let me insert it. Right, so I select iPad in the sidebar, and it shows me a load of photos premsumably on the pad that it wants to copy to Pictures and which I don't want it to since they are already there, but there does not seem to be a way of stopping it. Oh, yes I could possibly send them somewhere else, but there doesn't seem to be a way of not sending anything anywhere. I think this may be an iCloud issue. With "advanced editor", I have finally manage to insert the screen shot - hope that explains what I couldn't.

  • How to stop images from automatically brightening in lightroom 2

    I have been using lightroom 2 for a few months now and what I can't seem to figure out is once I import my images, and I start to preview them the images will automatically alter (saying rendering image), usually creating an image that is brighter and duller than my original image taken with my camera.  I want to stop this so my images will hold the vibrance my camera has already created.  I seem to be spending more time adjusting the images back to the original presets.  Anyone know how to change this setting?

    The most asked question, but usually asked in the correct forum here
    http://forums.adobe.com/community/lightroom
    To save you asking it yet again in that forum here is the answer in the FAQ

  • How to stop Acrobat opening document after printing to PDFmaker?

    Hello,
    When I print to PDFmaker, I just want Acrobat (Professional 7.0) to save the document, but it insists on opening a new window containing the recently printed document. If I quickly open another window, it brings the document window back to the top.
    This is very irritating. How do I make it stop opening this unnecessary window?
    Thanks,
    Katie
    PS. If relevant, I am running Windows XP on a Dell Inspiron 1520.

    From your Start Menu select Printers and Faxes. Right click on the listing for Adobe PDF and click Printing Preferences... and go to the Adobe PDF Settings tab. Uncheck the box labeled View Adobe PDF results. Click OK.

  • Spinning Beach Ball of Death... any way how to stop a process under 10.4.9?

    I remember the days when one could reliable and quickly interrupt any process that hung or took longer than expected by pressing “Command + .”. Since upgrading to MacOS 10.4.9 I experience mainly under Safari and other apps many instances where my Powerbook G4 simply hangs and processes a task for what seems to be an eternity. For no apparent reason. Pressing “Command + .” doesn’t do anything nor does “Command + Option + Escape” (how could it when the system is not responding) and usually I decide just to hold the on button down to force my Powerbook into action. Not healthy, I know, but we need to get in with our work. So, my question is: is there any other way to stop the spinning beach ball of death and interrupt a process?

    You could launch the Activity Monitor, set it for all processes, and see what might be hanging up. In that app, you can select the hanger, click Quit Process, and either Quit or Force Quit it. That said, however, it appears you have major system problems which need attending to. First backup your machine to an external HD. I suggest a bootable backup/clone, using Carbon Copy Cloner, SuperDuper!, etc. Then, boot with the install disk and run Disk Utility, repairing the disk and permissioins, and the Apple Hardware Test using the extended tests. If the disk passes those, boot back into the machine and see if the SBBOD problem's gone. If not, create a new admin user account, log into it, and check again. If gone, your original accounts corrupted—long an painful process to rectify. If not, then reinstall the latest COMBO update. If that doesn't fix things, then an Archive & Install, saving user and network settings, installation is in order.

  • How to stop images embedding in message when I forward to other recipients

    I have looked long and hard in this forum but can't see others having the same problem or a solution to this problem so I think it must be unique to me.
    When I receive an email that contains any type of image format and then I try to forward the message to others the recipients on the other end claim it is embedding the image into the content of the email and can't be downloaded. Before I send the email I am careful it is showing as an attachment. I've even tried to delete the attachments and reattach them to avoid this and still it is ending up embedded on the other end. This only happens when I forward an email- this doesn't happen when I create a new email.
    I have read others having this problem and claiming it has something to do with Apple and how Mail creates HTML- but it impairs me completely in my work process when I need to forward an image. Any suggestions out there?

    I failed to mention the best way to forward messages without embedding the images in the new forwarded copy is to +create a new message+ and attach the email message to the new email message. It comes across great but my problem of doing this or what was just suggested takes away the simplicity of just clicking forward and have everything sent properly. Too many steps....
    Why is mail embedding the images into the body of the email on a forwarded email?

Maybe you are looking for