"Mini" windows (with small close/min/zoom buttons)

I'm overall extremely pleased with Leopard. One of the things that drives me CRAZY, however, is the inconsistent nature of windows made with Get Info (⌘I). Sometimes, it seems, this creates a normal window, so that when I type the keyboard command to close the Info (⌘W), it closes.
But sometimes the Get Info window is one of these new "mini" windows that appear like windows, but won't receive the ⌘W command from the keyboard. Instead, the Finder window closes! Aaarrgh! This drives me crazy.
The same thing has happened with Help across the OS. I realize I'm probably alone in that I miss the old Help Viewer app. But the fact that it's gone isn't what bothers me. What does bother me is that ALL help windows are now this new "mini" window that won't close when told to with the keyboard, and worse still they float on top of everything no matter what.
Does anybody know if there is a way to turn these things off?

What do you mean?
From the Apple Human Interface Guidelines:
<hr>
An inspector is a panel that allows users to view the attributes of a selection. Inspectors (also called inspector windows) can also provide ways to modify these attributes. Pages, Keynote, and the Finder all make use of inspectors.\[...\]
Inspectors should update dynamically based on the current selection. Contrast this behavior with that of an Info window, which shows the attributes of the item that was selected when the window was opened, even after the focus has been changed to another item. Also, an Info window is not a panel; it is listed in the application’s Window menu and it does not hide when the application becomes inactive.
You can provide both inspectors and Info windows in your application, because in some cases it’s more useful to have one window in which context changes when each new item is selected (an inspector) and in other cases it’s more useful to be able to see the attributes of more than one item at the same time (a set of Info windows). Multiple inspector windows and Info windows can be open at the same time.
So Inspector windows are the norm, and Info windows are a bit unusual, but make perfect sense in the Finder.
I was a bit intrigued by the last sentence. Since when has the Finder, Interface Builder, Preview, etc. been able to open more than one Inspector?
By the way, the Inspector in the Finder can be closed with another hit of ⌘⌥I.

Similar Messages

  • Issue with Close/Minimise/Zoom Buttons in Snow Leopard

    Dear All,
    Hope you may be able to help me with a small but really annoying problem.
    If I go to click on the "close" button on a window (can be any application) but, for instance, miss slightly and click on the grey area just below or to the side of it, and then click close, the window in fact minimises.
    This is a reproducible behaviour but I can't for the life of me figure out why it's happening! I've repaired permissions and so on but to no avail.
    The only thing I can think was that I upgraded my copy of Snow from a Snow beta rather than an erase and install - would this cause such behaviour?
    Thanks
    Ryan

    That indicates corruption or a conflict within the old account, usually with preference (plist) files. Make a list of the preference files inside the /new user/Library/Preferences/ folder, log back into the old account, move the ones on your list to a folder on the desktop, log out and back in, and see if the behavior is fixed. If so, create another folder on the Desktop, copy the new ones to that folder, and slowly replace a few new ones in /old user/Library/Preferences/ with the same ones first moved, until you find which ones were causing the problem. Delete those and replace with their copies. The process is slow, but required.
    Alternatively, you could log into the new one, delete the old one, *electing to save its data (creates a disk image in /Users/Deleted Users/)*, recreate the account, using the same username/password combo, log into it, mount the saved data image, and slowly transfer plist files from it to the recreated one, frequently logging out and back in until you find the bad files.
    Good luck.

  • Need help with the rotate and zoom button...

    hi, i create a Jpanel code that use for zoom in and rotate image, the rotate button work fine but the zoom in is not work by the following code, can any one tell me how to fix this?
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import java.util.Hashtable;
    import javax.imageio.ImageIO;
    import javax.swing.event.*;
    public class RotatePanel extends JPanel {
    private double m_zoom = 1.0;
    private double m_zoomPercentage;
    private Image image;
    private double currentAngle;
    private Button rotate1, rotate2, rotate3,zoom;
    public RotatePanel(Image image) {
    this.image = image;
    MediaTracker mt = new MediaTracker(this);
    mt.addImage(image, 0);
    try {
    mt.waitForID(0);
    catch (Exception e) {
    e.printStackTrace();
    public void rotate() {
    //rotate 5 degrees at a time
    currentAngle+=90.0;
    if (currentAngle >= 360.0) {
    currentAngle = 0;
    repaint();
    public void setZoomPercentage(int zoomPercentage)
                m_zoomPercentage = ((double)zoomPercentage) / 100;    
    public void originalSize()
                m_zoom = 1; 
    public void zoomIn()
                m_zoom += m_zoomPercentage;
    public void zoomOut()
                m_zoom -= m_zoomPercentage;
                if(m_zoom < m_zoomPercentage)
                    if(m_zoomPercentage > 1.0)
                        m_zoom = 1.0;
                    else
                        zoomIn();
    public double getZoomedTo()
                return m_zoom * 100; 
    public void rotate1() {
    //rotate 5 degrees at a time
    currentAngle+=180.0;
    if (currentAngle >= 360.0) {
    currentAngle = 0;
    repaint();
    public void rotate2() {
    //rotate 5 degrees at a time
    currentAngle+=270.0;
    if (currentAngle >= 360.0) {
    currentAngle = 0;
    repaint();
    protected void paintComponent(Graphics g) {
    super.paintComponent(g);
    Graphics2D g2d = (Graphics2D)g;
    AffineTransform origXform = g2d.getTransform();
    AffineTransform newXform = (AffineTransform)(origXform.clone());
    //center of rotation is center of the panel
    int xRot = this.getWidth()/2;
    int yRot = this.getHeight()/2;
    newXform.rotate(Math.toRadians(currentAngle), xRot, yRot);
    g2d.setTransform(newXform);
    //draw image centered in panel
    int x = (getWidth() - image.getWidth(this))/2;
    int y = (getHeight() - image.getHeight(this))/2;
    g2d.scale(m_zoom, m_zoom);
    g2d.drawImage(image, x, y, this);
    g2d.setTransform(origXform);
    public Dimension getPreferredSize() {
    return new Dimension((int)(image.getWidth(this) + 
                                          (image.getWidth(this) * (m_zoom - 1))),
                                     (int)(image.getHeight(this) + 
                                          (image.getHeight(this) * (m_zoom -1 ))));
    public static void main(String[] args)  throws IOException{
    JFrame f = new JFrame();
    Container cp = f.getContentPane();
    cp.setLayout(new BorderLayout());
    Image testImage =
    Toolkit.getDefaultToolkit().getImage("clouds.jpg");
    final RotatePanel rotatePanel = new RotatePanel(testImage);
    final RotatePanel zomePanel = new RotatePanel(testImage);
    JButton b = new JButton ("90 degree");
    JButton c = new JButton ("180 degree");
    JButton d = new JButton ("270 degree");
    JButton e = new JButton ("zoom in");
    c.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent ae) {
    rotatePanel.rotate1();
    d.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent ae) {
    rotatePanel.rotate2();
    b.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent ae) {
    rotatePanel.rotate();
    e.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent ae) {
    zomePanel.zoomIn();
    cp.add(rotatePanel, BorderLayout.NORTH);
    cp.add(b, BorderLayout.WEST);
    cp.add(c, BorderLayout.CENTER);
    cp.add(d, BorderLayout.EAST);
    cp.add(e, BorderLayout.SOUTH);
    // f.pack();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setSize(500,500);
    f.setVisible(true);
    }

    TRIPLE CROSS POSTED
    [_http://forum.java.sun.com/thread.jspa?threadID=5314687&messageID=10342105#10342105_|http://forum.java.sun.com/thread.jspa?threadID=5314687&messageID=10342105#10342105]
    Stop posting this question over and over in multiple forums please.

  • I am have problems with the ipad mini, it is a little crazy. It controls by itself, opens and closes application zooms in and out, end my facetime calls, Also Un certain part of the screen is no longer responsive to the touch.

    I am have problems with the ipad mini, it is a little crazy. It controls by itself, opens and closes application zooms in and out, end my facetime calls, Also Un certain part of the screen is no longer responsive to the touch, it Should be having so much problems. Thanks for your help.
    iPad, iOS 7.0.4

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • My ipad mini is cracked in the bottom left corner of the screen and their is a thick black line with smaller coloured lines within it, is their anything I can do to fix it?

    My ipad mini is cracked in the bottom left corner of the screen and their is a thick black line with smaller coloured lines within it, is their anything I can do to fix it?

    Does this only happen on specific pages?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can try to disable notifications as a test (you may want to reverse this).
    You can try to set the dom.webnotifications.enabled pref to false on the <b>about:config</b> page.
    *http://kb.mozillazine.org/about:config

  • The screen on my ipod mini is black with small dots.  It looks like space.  Can I do anything to fix it?

    Hi,
    My screen on my ipod mini is black with small dots.  It looks like space.  Does anyone have any suggestions, please?
    Thank you. Cindy

    This is an iPod mini, not the iPod nano in your profile info?
    If you have not already, try doing a reset
    http://support.apple.com/kb/ht1320
    This restarts the iPod.  It is not erased.
    If that does not help, the next thing to try would be a Restore (as long as the iPod is still recognized by iTunes when connected.  The Restore button is in the iPod's Summary screen in iTunes.  This DOES erase the iPod, reinstall its software, and set it to default settings.  If a software problem on the iPod is the cause, a Restore should fix it.
    If the screen still has this problem after doing a Restore, it is likely to be a hardware problem on the iPod.

  • Adobe Reader Updater has been 'downloading' for over a week now...it is preventing me from signing out and closing my mini Mac, can't close down.  The window will not close ever, just keeps spinning around...help!

    How can I stop the 'Adobe Reader Update' from constantly trying to download?  It's been over a week now, preventing me from signing out of my computer and other issues too. Can you help please? thanks!

    Hi! The version is OS X 10 8 5...not sure what that means lol but it makes a difference obviously! 
    I did what  you said now and it has worked, thanks so very much for getting back to me.  I really appreciate your help!!
    Can I ask you questions in the future or do I just do that through the forum?\
    Thanks again, Jennie 
          From: Anubha Goel <[email protected]>
    To: rubyrose1950 <[email protected]>
    Sent: Sunday, April 26, 2015 10:42 PM
    Subject: You have been mentioned by Anubha Goel in Re: Adobe Reader Updater has been 'downloading' for over a week now...it is preventing me from signing out and closing my mini Mac, can't close down. The window will not close ever, just keeps spinning around...help! in Adobe Community
    |
    You have been mentioned
    by Anubha Goel in Re: Adobe Reader Updater has been 'downloading' for over a week now...it is preventing me from signing out and closing my mini Mac, can't close down. The window will not close ever, just keeps spinning around...help! in Adobe Community - View Anubha Goel's reference to you  Hey rubyrose1950, Could you please let me know what version of OS are you working on.You might try uninstalling Reader and install it again from the below mentioned link:Adobe Acrobat Reader DC Install for all versions Let me know how it goes. Regards,Anubha 
    Participate in the conversation by replying to this email
    To stop receiving these messages whenever you are mentioned, go to your preferences and disable notifications for direct social actions. |

  • Just tried to open iTunes, it won't, and I'm getting a blank window with an OK button. When I press the OK button, iTunes closes. what is going on?

    Have just tried to open iTunes, and I get a blank window (no dialogue, just a blank window) with an OK button. When I press OK, it closes down (not having opened anything) and shuts down. I've tried opening while holding down the option key, as I would to open with a new iTunes folder, and I"m getting the same empty window with an OK. Very frustrating, has anyone seen this, and can anyone help?  Thanks in advance,  Kate

    so, I called a friend who's more experienced than I am. He walked me through some steps, checking iTunes and we got the same dialogue -free window with the OK button. We then uninstalled iTunes, downloaded it afresh, and it opened with no problems. Seems to all be there, music, tv, etc. Not sure what the issue was, but it has stopped this problem.

  • Close Browser Window with view button element when view embedded into fpm

    Hi,
    is it possible to build a button into a component view which is embedded into a fpm to close the browser window?
    tried to build a exit plug within the view/window of my component. But nothing happened. the window stays open
    Maybe is it an option to fire the fpm close plug of the fpm from my component view embedded into the fpm?
    Hope you can help me.
    Using the close button of the fpm is not an option because the window should automaticaly close when clicking on a button embedded into my component view.
    Kind Regards
    Rico

    Hello,
    one more question.
    Is it possible to change the method. so that the fpm opens within the same browser window instead of a new one?
    Maybe is there a solution with the portal?
    This is the Method to create a new Shopping cart. This opens a new browser window.
    method /SAPSRM/IF_CLL_DOM_SCW_FIN~CREATE_NEW_SHOPPING_CART.
    data:
           LV_TASKCONTAINER      TYPE REF TO /sapsrm/if_cll_task_container,
           ls_obn_components     type /sapsrm/s_wd_ui_obn,
           lo_navigation_service TYPE REF TO /SAPSRM/IF_CH_WD_NAVI_SERV.
    try.
      LV_TASKCONTAINER = mo_parent_bo_mapper->get_task_container( ).
      CALL METHOD lv_taskcontainer->GET_NAVIGATION_SERVICE
        RECEIVING
          RO_NAVIGATION_SERVICE = lo_navigation_service.
      ls_obn_components-obn_system = 'SAP_SRM'.
      ls_obn_components-object_type = 'sc'.
      ls_obn_components-operation = 'shop'.
      CALL METHOD LO_NAVIGATION_SERVICE->LAUNCH_TARGET
        EXPORTING
          IV_TARGET_TYPE          = /sapsrm/if_ch_wd_navi_serv_c=>gc_target_type-obn
          IS_OBN_COMPONENTS       = ls_obn_components
          IV_OBN_PARAM_CLASS      = /sapsrm/if_ch_wd_navi_serv_c=>gc_param_class-taskcontainer
          IV_OBN_PARAM_METHOD     = 'GET_OBN_PARAMETERS_RM'
      catch /SAPSRM/CX_PDO_ERROR_GEN.
    endtry.
    endmethod.

  • TS3274 my ipad won"t turn off. there is a small window with an email text in it and it appears frozen on the screen. How can i turn the ipad off?

    my ipad won"t turn off. there is a small window with an email text in it and it appears frozen on the screen. How can i turn the ipad off?

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps BEFORE doing the reset.

  • JInternalFrame min/max button problem???

    Hi,
    I was just wondering if anyone can help me on this. I'm creating simple desktopPane applet with JInternalFrame in it. When i try to run it from browser, the min/max button got screwed up. When i iconized the jif, the '_' icon (minimized) is still there. When i deiconized it, the maximized icon (two rect icons) is there. Has anyone noticed this? I'm using the latest JSDK version. Any clues/helps greatly appreciated.
    Mike

    I don't recall seeing a bug regarding this issue. Do you know of one already filed against this? Does it only happens in the applet context? Can you reproduce this in a application context. Can someone post a small test case for me to run? I'm very interested in fixing these issues. We want all of you to be happy! :)
    Josh

  • When one window containing 1 tab is closed, the other window with several tabs closes also

    I have a set of web pages that reproducibly causes Firefox to act incorrectly. When Firefox is first started I click the "Restore previous desktop" button. Then I have 2 Firefox windows. The first to open has 6 tabs; the second has 1 tab. When I close the 2nd window (with 1 tab), it also closes Firefox completely with no error message. When I run Firefox again, "Restore" creates both windows exactly as they were before.
    I don't know yet if the actual URLs make a difference, but here they are anyway:
    '''''Window 1:'''''
    https://www.google.com/accounts/ServiceLogin?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fmail%2Fu%2F0%2F%3Fshva%3D1%26ui%3Dhtml%26zy%3Dl&bsv=llya694le36z&ss=1&scc=1&authuser=0&ltmpl=default&ltmplcache=2&from=login#inbox
    http://branamsmile.com/gum/?gclid=CLepiIaAhqkCFVJ25QodSyk1nw
    http://www.google.com/search?hl=&q=root+viewsonic+g+tablet&sourceid=navclient-ff&rlz=1B3GGLL_enUS412US412&ie=UTF-8&aq=0&oq=root+viewsoni
    ***** NOTE THIS TAB IS PROBLEMATIC *****
    When I press Alt+D, Ctrl+C, and Ctrl+V it into this comment box, I get
    '''woot'''
    When I look at the actual contents of the web page being displayed, it is the verizon wireless rebate page:
    '''www.verizonwireless.com/rebates'''
    The page has definitely finished being rendered (the refresh icon is displayed after the url "woot"), but the URL does not match the page. The URL displayed is not even in its proper form (i.e., www.woot.com).
    Remember that this page was RESTORED by Firefox from a previous session. It is as if I was on that tab at verizon, tried to go to woot.com by typing "woot" (which would of course bring up a search rather than the web page), DIDN'T PRESS ENTER, and Firefox is duplicating that entire sequence.
    ********* END PROBLEMATIC *************
    chrome://foxtab/content/newTabMessage.html
    https://www.bankofamerica.com/Control.do?page_msg=signoff&body=signoff
    '''''Window 2:'''''
    http://www.freewaregenius.com/2011/06/01/the-best-freeware-file-manager-a-comparative-analysis/
    With this exact set of windows and tabs, as restored by Firefox in a brand new instance of it, double-clicking the red Firefox in the top left corner of the 2nd window causes both windows to close.
    I wish I could save this configuration so I could always reproduce the error, but I need my computer :)

    You can check for problems with the sessionstore.js and sessionstore.bak files in the Firefox Profile Folder that store session data.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox Profile Folder.
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    *http://kb.mozillazine.org/Multiple_profile_files_created

  • In CC214 PS Why has adobe removed the "print Size Button"  And why have they made the Brush preview window so small you can't see the effects to accurately adjust them?

    In CC214 PS Why has adobe removed the "print Size Button"  And why have they made the Brush preview window so small you can't see the effects to accurately adjust them?
    These two things need to be remedied in their upgrades because It's become such a bother I've had to revert to older versions of PS.

    Yea, and it's a pain to get to.  What was the rational for removing the print size button?   With the magnifying glass tool selected in older versions of Photoshop you would get a button that says "print size" right next to Actual pixels, Fit Screen, Fill Screen. Now I have to go out of my way and dig for it if I want to see the print size.  Of all the buttons you could have taken away, why not fill screen?  I never use that.
    Besides the point I just downloaded the Oct Upgrade for PS and surprise! Nothing has changed and these are two big black eyes on newer versions of Photoshop.   The Brush preview window is  unchanged in CC but in CC2014 it's basically worthless.  If you apply a texture to a brush you can't properly see the scale of the texture, the spacing, scatter, etc...

  • My iPad mini power button is not working I want to disable it

    My iPad mini power button is having issues it's physical appearance is perfectly fine but my ipad continuously try to power off to completely shut down idk what the problem with it is yet but I can't afford to get it looked at or get it fixed right now but my question is can I temporally disable the power button

    No.

  • IPM EBS integration - zoom button is not opening window

    Hi,
    We have done the integration between EBS and IPM. It was working fine till the point we changed the IPM schema name.
    Initially we did the integration with IPM schema DEV_IPM and done all the changes it was working fine.
    For doing the UAT we created the schema UAT_IPM and done the new domain setup with IPM pointing to UAT_IPM. In standalone IPM is working fine. However since this point we are not able open the IPM window from Zoom button.
    What are the changes do we need to do in AXF tables after this? i am sure there should be some setting with AXF_properties table only. but not able to figure out WHAT ?????
    Please help.
    Regards,
    Vikrant Korde

    This got resolved.

Maybe you are looking for

  • Calling a BPEL process from java (STRUTS)

    Hi, I´ve a workspace where I have all the deployed bpel processes, and I´ve other workspace with a Struts project. I deployed my Struts project in the OC4J Server where the BPEL processes are deployed. I´m trying to initialise Locator instance in

  • How to process large input CSV file with File adapter

    Hi, could someone recommend me the right BPEL way to process the large input CSV file (4MB or more with at least 5000 rows) with File Adapter? My idea is to receive data from file (poll the UX directory for new input file), transform it and then expo

  • Set the default field value to transaction code field, when calling from WD

    Hi all, Can we pass the value in a input field of a standard transaction calling from WD application. Suppose we are calling a transaction VA03 in an external window, then how will be pass the value in the VBAK_VBELN screen field. Is there any way to

  • No measures found in the OLAP catalog for user CS_OLAP

    Working in XP, with Oracle Database 10g 10.2.0.1.0, AWM 10.2.0.1A, JDeveloper installed from the 10.1.2.0.2 Developer Suite, BI Samples are 10.1.2.0.0) I'm receiving this error when connecting to the CS_OLAP schema through JDeveloper: "Warning: No me

  • Import status in stms

    Hi, When i do an import in the PRD system the status doesn´t change from running to finished. The imports finished because the changes are in the programs that i´m changing but the status doesn´t changes. How can i fix this problem? Thanks Saludos /